如何在gerrit中修改已提交的change

在gerrit审核中,经常会遇到开发人员提交的代码审核不通过的情况。

那么开发人员这时有两个选择:

  1. 按照要求修改代码,然后重新提交一次代码

  2. 修改原来的Change

第一种方法会产生多次commit,而这些commit实际上是没有太多意义的,所以不推荐使用。

所以推荐第二种方法。下面讲解如何做:

安装 commit-msg hook

安装gerrit的commit-msg hook的目的是为了能够在每次提交的时候在你的本地产生一个Change-Id,这个Change-Id是将gerrit的Change和你的commit联系起来的纽带。

到项目的根目录下执行

curl -Lo .git/hooks/commit-msg http://your-gerrit-server/gerrit/tools/hooks/commit-msg
chmod u+x .git/hooks/commit-msg
这样的话,你每次提交的时候,这个hook都会在commit message的后面添加一行Change-Id:

$ git log -1
commit 29a6bb1a059aef021ac39d342499191278518d1d
Author: A. U. Thor
Date: Thu Aug 20 12:46:50 2009 -0700

  Improve foo widget by attaching a bar.  We want a bar, because it improves the foo by providing more  wizbangery to the dowhatimeanery.  Bug: # 42  Change-Id: Ic8aaa0728a43936cd4c6e1ed590e01ba8f0fbf5b

修改已经提交至gerrit的commit

$ git checkout 有问题的commit
$
$ git commit --amend
$ git push origin HEAD:refs/for/master
Counting objects: 5, done.
Delta compression using up to 8 threads.
Compressing objects: 100% (2/2), done.
Writing objects: 100% (3/3), 546 bytes, done.
Total 3 (delta 0), reused 0 (delta 0)
remote: Processing changes: updated: 1, done
remote:
remote: Updated Changes:
remote: http://gerrithost:8080/68
remote:
To ssh://gerrithost:29418/RecipeBook.git

  • [new branch] HEAD -> refs/for/master
    注意到上面的Updated Changes字样了吗?这说明我们是更新了gerrit上的Change,而不是一般情况下的New Changes。

然后你到gerrit上查看自己的Change,是不是有变化了?

windows下怎么弄?

commit-msg hook在windows下可能无法起作用,但我们依然有办法解决这问题。

我们还是按照前面讲的步骤来:

$ git checkout 有问题的commit
$
$ git commit --amend
注意,这个时候你需要手工添加Change-Id了,到gerrit上找到自己的Change的Change-Id:

上图的最后一样就是Change-Id,然后手工添加到commit注释的最后一行上:

Change-Id: I347f61e90f259c78fcaaa8367b804941005a9b2b

然后

$ git push origin HEAD:refs/for/master
Counting objects: 5, done.
Delta compression using up to 8 threads.
Compressing objects: 100% (2/2), done.
Writing objects: 100% (3/3), 546 bytes, done.
Total 3 (delta 0), reused 0 (delta 0)
remote: Processing changes: updated: 1, done
remote:
remote: Updated Changes:
remote: http://gerrithost:8080/68
remote:
To ssh://gerrithost:29418/RecipeBook.git

  • [new branch] HEAD -> refs/for/master

关键字:gerrit, git, commit, remote


本文来自互联网用户投稿,文章观点仅代表作者本人,不代表本站立场,不承担相关法律责任。如若转载,请注明出处。 如若内容造成侵权/违法违规/事实不符,请点击【内容举报】进行投诉反馈!

立即
投稿

微信公众账号

微信扫一扫加关注

返回
顶部