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?
|
feedback
|
will pull from all of your remotes. The merge won't be automatic. You could try
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). | |||
feedback
|