gerrit create-branch - Create a new branch
ssh -p <port> <host> gerrit create-branch <PROJECT> <NAME> <REVISION>
Creates a new branch for a project.
Caller should have Create Reference permission on the project.
Administrators do not automatically have permission to create branches. It must be granted via the Create Reference permission.
This command is intended to be used in scripts.
<PROJECT>
Required; name of the project.
<NAME>
Required; name of the branch to be created.
<REVISION>
Required; base revision of the new branch.
Create a new branch called newbranch from the master branch of the project myproject.
$ ssh -p 29418 review.example.com gerrit create-branch myproject newbranch master
Part of Gerrit Code Review