技巧- Gerrit push到仓库

该组用户需要忽略审核时,执行如下命令:

git push origin HEAD:refs/for/master%submit

就是在原有 push 命令基础上加上 %submit 这个后缀即可.

https://blog.csdn.net/liuxu0703/article/details/54343626

Gerrit使用

Push 代码

git push origin HEAD:refs/for/master

新开分支 push代码

  git pull --rebase //先拉取数据
  git push  origin calendar_new:refs/for/calendar_new // 远程分支
  //or
  git push origin hotfix_7.9:resf/for/hotfix_7.9
``

你可能感兴趣的:(技巧- Gerrit push到仓库)