将提交合并为gerrit的最佳方法是什么?
问题如下:
对于小故事,我需要最多两次提交。到目前为止,我的评论失败了2次,现在,我第三次需要提交,我需要最多2个补丁集而不是3。
答案 0 :(得分:2)
我这样做的方法如下:
如果是第一次,提交+审核。就那么简单。
我承诺的第二个,第三个等,而不是创建一个评论分支并做一个壁球。
你应该看到类似的东西:
$ git rebase -i HEAD~4
pick 01d1125 Do smth
s 6340aah Do smth 2
s ebfd369 Do smth 3
s 30e0ccb Fixed the review.
# Rebase 60709da..30e0ccb onto 60709da
#
# Commands:
# p, pick = use commit
# e, edit = use commit, but stop for amending
# s, squash = use commit, but meld into previous commit
#
# If you remove a line here THAT COMMIT WILL BE LOST.
# However, if you remove everything, the rebase will be aborted.
#