Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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...

share|improve this question

1 Answer

up vote 13 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.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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