[git-users] Wanted to setup a local git server

2014-04-03 Thread Dhanesh Kumar
Hi, I have a GIT server setup in US. But am working from India. So accessing of server is slow. So I wanted to setup a local GIT server in India where in all the developers will check-in the code and do all the operations. And that code will be synced to the US server. Anybody has any idea on

Re: [git-users] Wanted to setup a local git server

2014-04-03 Thread John McKown
On your local server (to be), try doing something like: git clone --mirror url-to-us-server This will create a bare repository on the local server which is identical to the server in the US. Have your local developers do a git clone from this server. This will cause git push to update the local