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?
| |||
|
feedback
|
|
| ||||
|
feedback
|
|
It is the short for:
| |||
|
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 | |||
|
feedback
|