how do I mirror a git repository to Gerrit?

I will do this:

[git repository for libdrm] -> my gerrit <-> developers

Gerrit download changes from freedesktop git repository. Developers clone repository from gerrit and push into gerrit. Developers never pushes changes to main repository.

I have created new project with gerrit. I download repository:

git clone http://anongit.freedesktop.org/git/mesa/drm.git

I will push this repository to gerrit, but I can't because I have got errors:

remote: ERROR:  In commit ced219ebbd3b266ac8326223bad62f994907ae6b
remote: ERROR:  committer email address chris@chris-wilson.co.uk
remote: ERROR:  does not match your user account.
remote: ERROR:
remote: ERROR:  The following addresses are currently registered:
remote: ERROR:    xxx@xxx.com
remote: ERROR:
remote: ERROR:  To register an email address, please visit:
remote: ERROR:  http://mygerrit-server/#/settings/contact

I have permisions for all. How I can add mirror to gerrit?

link|improve this question

50% accept rate
feedback

2 Answers

You need the 'forge committer' and 'forge author' permissions. This tells Gerrit to ignore that you aren't the author or committer of the commits you are pushing. http://gerrit-documentation.googlecode.com/svn/Documentation/2.2.2/access-control.html#category_forge_author

link|improve this answer
feedback

That looks like what is described in this thread:

In your Git configuration, you called yourself "yyy@xxxxxxxx". But you told Gerrit you can be emailed at "mmm@xxxxxxxxx". Since the email address in your Git configuration is how people identify you, Gerrit is trying to make sure they are the same.

You need to either adjust your Git configuration to call yourself "mmm@xxxxxxxxx", or also register the email address "yyy@xxxxxxxx" with in your Gerrit account settings.

More details in "Gerrit documentation 'you are not committer …'" page.

link|improve this answer
Must I add email address of every people who ever committed to libdrm repository? This is not easy... – esio Feb 13 at 19:36
@esio: Brad's suggestion about forging the author seems interesting (and I have upvoted it). Tell us if that works. – VonC Feb 13 at 21:46
feedback

Your Answer

 
or
required, but never shown

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