vote up 1 vote down star
1

Short: is there a way to have a git repo push to and pull from a list of remote repos (rather than a single "origin")?

The long: I often have a situation when I'm developing an app in multiple computers, with different connectivity -- say a laptop while on transit, a computer "A" while I'm in a certain location, and another computer "B" while on another. Also, the laptop might have connectivity with only either "A" or "B", and sometimes both.

What I would like to is for git to always "pull" from and "push" to all the computers it can currently connect to, so it's easier to jump from one machine to the other and continue working seamlessly.

flag

3 Answers

vote up 5 vote down check

You can configure multiple remote repos with the "git remote" command; for example "git remote add alt alt-machine:/path/to/repo". When you do "git remote update", that will fetch from all the configured remotes and update tracking branches--- but not merge into HEAD. If it's not currently connected to one of them, it will time out or throw an error, and go on to the next. You'll have to manually merge from the fetched repos as you decide is right. Or cherry-pick, or however you want to organise collecting changes. You can also just do for instance "git pull alt master" to fetch the master branch from alt and pull it into your current head. So in fact git pull is almost shorthand for git pull origin HEAD (actually it looks in the config file to determine this, but you get the idea).

For pushing updates, you have to do that to each repo manually. Push was, I think, designed with the central-repository workflow in mind.

link|flag
so what you are saying is that "git remote add foo ssh://foo.bar/baz" creates a shorthand form, but I still need to loop over them with a "git pull", or loop over them with a "git merge" (what's the syntax here, after a "git remove update"?) Won't this shorthand name also work for "git push"? I.e. can't I "git push foo" etc (loop)? Thanks – Zorzella May 11 at 22:50
"git pull" is basically "git fetch" followed by "git merge". "git remote update" just does a bunch of "git fetch" calls for you. So what remains is to do the "git merge" bit. You can say "git merge origin/master" and it will merge origin's version of master into your current HEAD. "git pull origin master" does the same thing, although it will do a fetch first (and if you've already done git remote update, that won't have anything more to fetch, so it's redundant). Yes, you can say "git push foo" and it will push all matching branches to the remote called "foo". – araqnid May 11 at 23:19
vote up 2 vote down

You'll need a script to loop through them. Git doesn't a provide a "push all." You could theoretically do a push in multiple threads, but a native method is not available.

Fetch is even more complicated, and I'd recommend doing that linearly.

I think your best answer is to have once machine that everybody does a push / pull to, if that's at all possible.

link|flag
Problem is, as I described, there is no central always available box. If I have to write a looping bash script, so be it, but it feels funny that a distributed VC would not help me more here... – Zorzella May 11 at 18:33
Being distributed, it assumes that not everybody is available, or wanted to be pushed to. It also relates to different repositories being in different states, and the assumption that others are working on them concurrently. The order you push & pull from a set of repositories affects the state of different repositories, and you'd have to make multiple passes to have them all truly synced. This is why there is no "pull / push all". Then there's conflicts... ;) – Autocracy May 11 at 18:46
vote up 2 vote down

You can add remotes with:

git remote add a urla
git remote add b urlb

Then to update all the repos do:

git remote update
link|flag
I tried this and got "fatal: remote origin already exists". – Jauder Ho Jul 12 at 8:37
Oops, there was a mistake... fixed. – felipec Jul 16 at 0:27

Your Answer

Get an OpenID
or

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