we want to move our current GIT repositories (about 9-10) with about 20-50 branches each to gerrit. Do we really have to push each single branch (worst-case: 500 branches!) manually into gerrit or is there a better solution? The gerrit daemon will run on the current git server.

link|improve this question
Would it be possible to move the git repos over to gerrit (filesystem) and registering them in the database? – lurkerbelow Jan 4 at 16:12
feedback

2 Answers

up vote 1 down vote accepted

There are a few options:

  1. Just move the repositories using filesystem commands to the correct location on your server. The Gerrit daemon will pick them up without any problems.

  2. Push them to the server using git bypassing review. git push $SERVER$ refs/heads/*:refs/heads/* should work just fine. You'll need to do this once per repository and it will push all the branches in that repository. You'll need permissions on Gerrit to create branches and bypass review.

link|improve this answer
It is important, which Gerrit version you use. With Gerrit 2.2.1, parts of the configuration were moved from the database to the repositories itself. Thus, and due to a bug, you need an empty branch refs/meta/config in your repositories, otherwise you get an exception in the web interface, if you visit the project configuration pages. – dunni Jan 6 at 15:03
feedback

Branches are very light in git. It shouldn't be an issue.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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