pub fn create_branch(
name: &str,
start_point: Option<&str>,
) -> Result<(), CoreError>Expand description
Create and checkout a new git branch from a specific start point.
Use start_point like "origin/main" to branch from the remote default branch.