Claire
0
Q:

git checkout new branch

//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 topic/newbranch
6
// create and checkout new branch in one line
git checkout -b new_branch
3
# 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
truelover@PEACE project % git checkout master
truelover@PEACE project % git checkout branch_name
#create branch
truelover@PEACE project % git checkout -b new_branch_name
5
$ git checkout -b <branch-name>
1
git commit -m "added my github name"
1
$ git checkout -b <branch_name>
0
$ git branch <branch_name>
$ git checkout <branch_name>
0

New to Communities?

Join the community