简体   繁体   中英

Setup review targets for branches in git

I have created a branch locally using the command -

git checkout -b <branch>

made it a remote branch using the command -

git push -u origin <branch>

I am trying to set review targets for the branch using the command -

git reviewtargets <branch>

But I get a message saying - 'reviewtargets' is not a git command .

How can I setup review targets for the branch I have created?

Any git xxx command (which is not a native git feature) supposes the presence of an executable named git-xxx (no extension) anywhere in your $PATH .

Make sure that you have git-reviewtargets in your PATH.

I am trying to set review targets for the branch using the command

What is this command? Its not a git command.
I assume you wish to see list of branches that you gave.

Do this:

To see a full list of git commands type git or git --help

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM