How do I manually add a project to the gerrit code review tool?

I've seen some examples that execute a gerrit binary but my installation doesn't appear to have one of these...

Thanks in advance.

link|improve this question

60% accept rate
feedback

2 Answers

up vote 6 down vote accepted

You need to use the ssh interface. Set up your public key in the web interface then run:

ssh -p <port> <user>@<gerrit-host> gerrit --help

This will list you the available commands. What you actually need to run to create your project is:

ssh -p <port> <user>@<gerrit-host> gerrit create-project -n <project-name>
link|improve this answer
I've added the public key but get this error... any ideas? Permission denied (publickey). – rich Jan 22 '11 at 22:28
Are you using the right username? I forgot to put that in my answer... I usually set up my ssh config with an alias so that I don't need to specify the port or the user – Andrew Aylett Jan 23 '11 at 9:20
Spot on again, thanks... I wasn't using the right username! – rich Jan 23 '11 at 11:46
Can you please clarify what I should do after adding a public key in web UI? Cause I still get permission denied error. sorry for so dummy question, but I stuck on that. – unresolved_external Apr 12 at 16:38
feedback

From gerrit 2.3.x, if you are in Administrator, you can create the project in the web as well.

It is visible under Admin/Projects if you have permission.

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.