How to push to two servers at once with git
05 July, 2010As I said this time last year, I dislike the idea of people using a decentralised version control system to centralise their code.
This means that some of my code sits in Bazaar on my server, some in Git on my server, and some in github. I’m not keen on this situation, and given that github does have a large amount of mindshare, and that launchpad is really quite horrible to use, I want to be able to “git push” to both my server and github at the same time.
It turns out this is quite easy; and everything below (with a few very minor modifications) comes from “Setting up a new remote git repository” by Tim Lucas and Aristotle Pagaltzis‘ answer on this Stackoverflow question.
So, given that I have a working github repo, and a local checkout:
Set up the new bare repo on the server:
$ ssh myserver.com $ mkdir /var/git/myapp.git $ cd /var/git/myapp.git $ git --bare init Initialized empty Git repository in /var/git/myapp.git $ exit
Add the remote repository to your existing local git repo and push:
$ cd ~/code/myapp $ git remote add myserver ssh://myserver.com/var/git/myapp.git $ git push myserver master
You have now associated the remote repo with your local repo under the name “myserver”. Now open up ~/code/myapp/.git/config
and:
put something like this:
[remote "public"] url = git@github.com:username/myapp.git url = ssh://myserver.com/var/git/myapp.git
Now you can say “git push public” to push to both repos at once.
and that’s it! Every time you push you will be making sure that your code lives on both your server and on github. Adds links to both in your README and the job is complete.
Comments
Lorenzo
02 December, 2011 at 11:07
Kevin
04 October, 2012 at 15:03
Thanks. This was very helpful.
This article has become one of my top used bookmarks everytime I upgrade my distro or set up a new comp. Thanks.