I want to switch to the remote branch in Git. What is the difference these commands?
git checkout -b feature1 origin/feature1 and
git checkout --track origin/feature1
|
I want to switch to the remote branch in Git. What is the difference these commands?
|
|||
|
Those do the same thing, creating a local branch called
I believe that in older versions of Git the second one might not have worked, but unless that's important to you, you can just not worry about it. There have been a lot of miscellaneous "do what I mean" improvements to the UI over the years. |
|||
|
|
git checkout feature1and (assuming you don't have a local branch namedfeature1) Git will correctly guess you want a new local branch calledfeature1which tracksorigin/feature1. – meagar Jan 31 '12 at 17:16