gerrit set-head - Change a project’s HEAD.
ssh -p <port> <host> gerrit set-head <NAME> --new-head <REF>
Modifies a given project’s HEAD reference.
The command is argument-safe, that is, if no argument is given the previous settings are kept intact.
Caller must be an owner of the given project.
This command is intended to be used in scripts.
<NAME>
Required; name of the project to change the HEAD. If name ends with .git
the suffix will be automatically removed.
--new-head
Required; name of the ref that should be set as new HEAD. The refs/heads/ prefix can be omitted.
Change HEAD of project example
to stable-2.11
branch:
$ ssh -p 29418 review.example.com gerrit set-head example --new-head stable-2.11
Part of Gerrit Code Review