I used git checkout -b to create a new branch. I think that git branch does the same thing.
How do these two commands differ, if they differ at all?
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
|
||||
|
|
|
|
||||
|
|
|
It is the short for:
|
|||
|
|
|
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' |
||||
|
|