我使用命令 -
在本地创建了一个分支git checkout -b <branch>
使用命令
使其成为远程分支git push -u origin <branch>
我正在尝试使用命令
为分支设置审核目标git reviewtargets <branch>
但我收到一条消息 - 'reviewtargets' is not a git command
。
如何为我创建的分支设置审核目标?
答案 0 :(得分:0)
任何git xxx命令(不是本机git功能)都假设git-xxx
中任何位置都存在名为$PATH
(无扩展名)的可执行文件。
确保路径中有git-reviewtargets
。
答案 1 :(得分:0)
我正在尝试使用命令
为分支设置审核目标
这个命令是什么?它不是一个git命令 我假设您希望看到您提供的分支列表。
这样做:
列出分支机构 https://git-scm.com/docs/git-branch
# List all branches locally and remotes
git branch -a
列出遥控器 https://git-scm.com/book/no-nb/v1/Git-Branching-Remote-Branches
git remote -vvv
要查看完整的git命令列表,请键入git
或git --help