A simple example. I commit a change to Gerrit, which breaks the CI build or a reviewer is not satisfied. I then fix my change with another commit. In many cases this is small patch set for which I do not want a new gerrit review but rather as a new patch set in the original review.

I know this can be achived using ammend or rebasing and squashin.

Is this the only options? We are a little bit concerned about having to rewrite history using rebasing and squashing.

Thanks,

Giao.

link|improve this question
feedback

2 Answers

git commit --amend works pretty well; that how we do it most of the time.

link|improve this answer
you need to add the gerrit change-id at the bottom of your commit message (Change-Id: 234j243rasdf...) right before the git #'ed commit description and the change will be patched onto your previous commit – mut1na Feb 27 at 22:09
feedback

This has been discussed on the gerrit mailing list: http://groups.google.com/group/repo-discuss/browse_thread/thread/fc4246f02b77aa9a

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.