|
|
|
|
|
by jspiros
4869 days ago
|
|
Creating a branch with git branch bugFix
does not automatically check it out, so you'd have to follow it up with git checkout bugFix
but if you do git checkout -b bugFix
it will create the branch and then check it out all in one step. |
|