In Gerrit,I can create a project through:

ssh –p 29418 192.168.22.244 gerrit create-project --name gemfield

But,how can I delete the gemfield project ?

I havent see related commands or buttons on web page...

link|improve this question

67% accept rate
feedback

1 Answer

up vote 3 down vote accepted

There isn't a method to delete projects from Gerrit currently. It must be done by hand. This is the most-requested feature of Gerrit - see http://code.google.com/p/gerrit/issues/detail?id=349.

There are 2 steps to deleting a project by hand:

  1. Delete the repository from the server's file system
  2. Delete any references of the repository from the database. The tables to purge depend on the version of Gerrit you are running - the projects table was removed in 2.2.0 for example.

If this is a busy/active server, the only truly safe way to do this is to shut down Gerrit while you make your changes.

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.