美文网首页
Gerrit Push 到当前分支并指定 Review 人

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

作者: 碧霄问鼎 | 来源:发表于2018-04-10 20:20 被阅读264次

    在终端运行如下命令:

    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 的邮箱。

    相关文章

      网友评论

          本文标题:Gerrit Push 到当前分支并指定 Review 人

          本文链接:https://www.haomeiwen.com/subject/srznhftx.html