Gerrit Push 到当前分支并指定 Review 人

在终端运行如下命令:

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%[email protected],[email protected],[email protected],[email protected]"; echo $cmd; echo; $cmd; }; f'

运行完成后使用 git pcb (push current branch) 即可 push 到当前分支并指定 review 的人,记得改 review 的邮箱。

你可能感兴趣的:(Gerrit Push 到当前分支并指定 Review 人)