Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

How can I make git push to push not only to origin but also another remote repository?

as git push is only an alias for git push origin, can I alias git push to push to 2 remote repositories at once (with just that one command)?

I’m not looking for a non-git script here but would like to set this up for my local repository in git.

When I tried it with post-push scripts I failed.

share|improve this question
would this serve your needs? – klang Nov 23 '10 at 12:21
possible duplicate of pull/push from multiple remote locations – ripper234 Oct 27 '11 at 14:37

1 Answer

up vote 16 down vote accepted

Don't think you can do it just by setting a flag on git but a quick lil search brings up a positive result.

http://jeetworks.org/node/22

Here, the person shows how to modify a config file for git that will allow you to push to multiple remote repositories without manually typing them all in (well only typing them in the first time and not after)

In the .git/config file you can add multiple urls to a defined remote:

[remote "all"]
    url=ssh://user@server/repos/g0.git
    url=ssh://user@server/repos/g1.git

If you git push all now you push to all the remote urls.

share|improve this answer
The remote “hack” is probably what I was looking for. (It’s not redefining the git push -> git push origin HEAD alias but does the thing I want it to.) In .git/config once can add multiple urls to a remote. Thanks. – Kissaki Nov 23 '10 at 13:36
Whilst this may theoretically answer the question, it would be preferable to include the essential parts of the answer here, and provide the link for reference. – ThiefMaster Jul 13 '12 at 10:02
Something isn't working for me: stackoverflow.com/questions/15273040/… – ripper234 Mar 7 at 13:56

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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