Git gerrit 提交代码Review 返回后修改步骤 以及git操作
gerrit review 代码,git 修改后重新提交
1.git reset commit_id 返回此次提交前
2. 修改完毕后,git add -u .
3. git commit --amend 修改并进行comment加上changeID
4.git push origin HEAD:refs/for/XXXX_branch
gerrit revie 代码,git 提交 review 出现问题,但后来了又提交了新东西,这个时候
commit 1 new
commit 2
commit 3 oldest
1. git rebase oldest^ --interacitve [会弹出VI 让进行编辑 PICK EDIT,选 EDIT 即可]
2. 赶紧修改
3. git add -u .
4. git commit --amend [编辑]
5. git rebase --continue
6. git push origin HEAD:refs/for/XXXX_branch
---------------------
作者:2011B哥funs
来源:CSDN
原文:https://blog.csdn.net/wyf111/article/details/37883577
版权声明:本文为博主原创文章,转载请附上博文链接!
更多推荐
所有评论(0)