Q:

git new branch

// Example for creating a new branch named myNewBranch
git checkout -b myNewBranch

// First Push
git push --set-upstream origin myNewBranch
9
//Create a New Branch
git checkout -b [name_of_your_new_branch]
//First Push
git push --set-upstream origin [name_of_your_new_branch]
23
$ git checkout -b [name_of_your_new_branch]
0
// create and checkout new branch in one line
git checkout -b new_branch
3
git checkout -b <branch_name>
3
git checkout -b topic/newbranch
6
# Create New Branch And Switch To It
$ git checkout -b myBranchName
7
//when on branch 'dev' make branch 'myFeature' off of 'dev'
git checkout -b myFeature dev
3
$ git checkout -b [your_branch_name]
# Switched to a new branch [your_branch_name]

# This is shorthand for:
$ git branch [your_branch_name]
$ git checkout [your_branch_name]
1

New to Communities?

Join the community