I used git checkout -b to create a new branch. I think that git branch does the same thing. Can anyone explain what is the difference between these two commands, if there is any?

link|improve this question

62% accept rate
feedback

3 Answers

up vote 10 down vote accepted

git checkout -b BRANCH_NAME creates a new branch and goes to new branch but git branch BRANCH_NAME creates a new branch and holds you still on the same branch.

link|improve this answer
feedback

git branch creates the branch but you remain in the current branch that you have checked out.

git checkout -b creates a branch and checks it out.

It is the short for:

git branch name
git checkout name
link|improve this answer
feedback

git branch: Show all your branches

git branch newbranch: Create a new branch

git branch -b newbranch: Create a new branch and makes it's the active branch, you can do 'git branch' and after 'git checkout newbranch'

Bye

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.