vote up 3 vote down star

sometimes, git will spontaneously (during some, but not all, "pull" or "clone" operations) copy all of the remote branches of a repository into my local repository (and even set them all up to track the corresponding remote branches correctly). What causes this? Is there a way I can do this on purpose?

flag

45% accept rate

1 Answer

vote up 3 vote down

If you just do a normal branch from a remote branch, it'll track by default:

git checkout -b somebranch origin/somebranch

means roughly the same thing as

git checkout -t origin/somebranch

You pretty much have to explicitly tell it if you don't want such tracking.

link|flag
ok, yeah, but sometimes I track branches that I didn't ask for! – jes5199 Jan 6 '09 at 6:12
Are you suggesting that it's spontaneously creating tracking branches on a plain pull? I don't know how to convince it to do that. – Dustin Jan 6 '09 at 17:51
Yes, that is exactly what I am suggesting. – jes5199 Jan 6 '09 at 20:14
Can you reproduce this and show a script of what you did? I wouldn't know how to do that without explicitly checking things out. – Dustin Jan 6 '09 at 21:48

Your Answer

Get an OpenID
or

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