Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

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

share|improve this question
2  
FYI - in recent versions of Git, you can simply git checkout feature1 and (assuming you don't have a local branch named feature1) Git will correctly guess you want a new local branch called feature1 which tracks origin/feature1. – meagar Jan 31 '12 at 17:16

1 Answer

Those do the same thing, creating a local branch called feature1 starting at the current position of origin/feature1, and tracking origin's feature1 branch (i.e. it knows where to pull from). This can generally be understood from the manpage, under --track:

If no -b option is given, the name of the new branch will be derived from the remote-tracking branch. ... This would tell us to use "hack" as the local branch when branching off of "origin/hack" ...

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.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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