Firstly, I have one pacthset1 for commitA, then I push the pacth set to gerrit for review. Then, I made some additional new changes by amending commitA, how could I separate these new changes from previous pushed patchset and generate a new patch set only for them without do a new commit?

link|improve this question

0% accept rate
feedback

1 Answer

I'm not sure what you are trying to do exactly, but I can think of 2 possibilities:

  1. Fix some things in commitA. That is typically why you amend a commit. If that is the case, you are doing everything correctly. You will end up with patchset 2 for commitA.

  2. Create a new commit which has changes to go on top of commitA. If that is the case, you shouldn't be amending commitA. You should create a new commit and push it to Gerrit (don't use --amend when committing). This will create patchset1 for commitB in Gerrit.

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.