delete-project delete

NAME

delete-project delete - Completely delete a project and all its changes

SYNOPSIS

ssh -p 29418 * delete-project delete
  [--yes-really-delete]
  [--force]
  [--preserve-git-repository]
  <PROJECT>

DESCRIPTION

Deletes a project from the Gerrit installation, removing the Git repository along with any changes associated with it.

ACCESS

Caller must be a member of a group that is granted the ‘Delete Project’ capability (provided by this plugin) or the ‘Administrate Server’ capability.

SCRIPTING

This command is intended to be used in scripts.

OPTIONS

--yes-really-delete
Actually perform the deletion. If omitted, the command will just output information about the deletion and then exit.
--force
Delete project even if it has open changes.
--preserve-git-repository
Don’t delete git repository directory.

EXAMPLES

See if you can delete a project:

  $ ssh -p 29418 * delete-project delete tools/gerrit

Completely delete a project:

  $ ssh -p 29418 * delete-project delete --yes-really-delete tools/gerrit

SEE ALSO