vote up 7 vote down star
2

Tracking a single remote branch as a local branch is straightforward enough.

$ git checkout --track -b ${branch_name} origin/${branch_name}

Pushing all local branches up to the remote, creating new remote branches as needed is also easy.

$ git push --all origin

I want to do the reverse. If I have X number of remote branches at a single source:

$ git branch -r 
branch1
branch2
branch3
.
.
.

Can I create local tracking branches for all those remote branches without needed to manually create each one? Say something like:

$ git checkout --track -b --all origin

I've googled and RTMs, but have come up bunk thus far.

flag

2 Answers

vote up 10 vote down check

Using bash:

for remote in `git branch -r `; do git branch --track $remote; done

Update the branches, assuming there are no changes on your local tracking branches:

for remote in `git branch -r `; do git checkout $remote ; git pull; done

Ignore the ambiguous refname warnings, git seems to prefer the local branch as it should.

link|flag
Thanks for the heads-up about the refname warnings. That was helpful. – Paul Dec 19 '08 at 18:29
Thanks Otto, I suspected that scripting would be the only solution. You've provided a pretty simple one. – Janson Dec 20 '08 at 19:18
vote up 6 vote down

You could script that easily enough, but I don't know when it'd be valuable. Those branches would pretty quickly fall behind, and you'd have to update them all the time.

The remote branches are automatically going to be kept up to date, so it's easiest just to create the local branch at the point where you actually want to work on it.

link|flag
That's a good point. The main use case I'm thinking of is setting up a local dev environment based on a remote git repository. So when I do my initial clone, I also want to track all the remote branches as they are at that time. – Janson Dec 18 '08 at 21:44

Your Answer

Get an OpenID
or

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