up vote 0 down vote favorite
share [g+] share [fb]

I'd like to keep Git repositories on four machines synchronized, and all of them are private repos. Is it possible to set up a single Git repository to pull from the other three machines at the same time, with all the changes attempting to merge with a single branch locally?

link|improve this question

feedback

1 Answer

up vote 3 down vote accepted
git remote update

will pull from all of your remotes. The merge won't be automatic. You could try

git merge -s octopus r1/master r2/master r3/master r4/master

to get a five-way octopus merge, but it doesn't seem like that's what you'd really want (I certainly wouldn't want that).

link|improve this answer
All remotes unless remotes.default is not defined, in which case git remote update would fetch from all remotes in group specified by 'remotes.default'. If 'remotes.default' is not defined, it would nevertheless skip remotes for which remote.<name>.skipDefaultUpdate config variable is true. See kernel.org/pub/software/scm/git/docs/git-remote.html – Jakub NarÄ™bski Nov 13 '09 at 0:23
feedback

Your Answer

 
or
required, but never shown

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