在终端运行如下命令:
git config --global alias.pcb '!f() { : push ; r=$1; [[ -z $r ]] && r=origin; b=$2; t=$(awk "{ print \$2 }" $(git rev-parse --git-dir)/HEAD); t=${t#refs/heads/}; [[ -z $b ]] && b=$t; cmd="git push $r HEAD:refs/for/$b%r=zengkang@hellobike.com,r=huanglei@hellobike.com,r=zhangquanwei@hellobike.com,r=jiangyuanlu@hellobike.com"; echo $cmd; echo; $cmd; }; f'
运行完成后使用 git pcb
(push current branch)
即可 push
到当前分支并指定 review
的人,记得改 review 的邮箱。
网友评论