We use git with Gerrit for code reviewing in Europe and it works fine ;) The problem is that we have colleagues in Asia with an internet connection that makes cloning, pushing and pulling take ages. Is there a way to setup a Gerrit mirror so that every commit has to be transfered between Europe and Asia only once? I know Gerrit supports replication but I'm not sure that's the answer since I'd like to be able to push and pull on both sides.

link|improve this question
feedback

1 Answer

I don't use gerrit, but here problem doesn't seem to be that complex. You just need to create a "local" repository. Now for example set up a post-receive-hook on both sides, that push to each other. Now every time someone pushs something to your australian repository, it gets pushed to your mirror and you and your developers can push and pull from this one (which will then pushed to australia again).

link|improve this answer
If I remember correctly Gerrit doesn't fire the post-receive-hook :/ – Taco Jul 30 '11 at 6:38
Gerrit is just a frontend, but the git repository itself should fire it. – KingCrunch Jul 30 '11 at 10:27
feedback

Your Answer

 
or
required, but never shown

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