I am rebasing a complex feature to another branch using git cherry-pick
. When trying to resolve conflicts in a big commit, I find out that I've missed some other commit that should be applied first.
I can't stash
the current state, apply the other commit and then do stash pop
.
I could do cherry-pick --abort
, apply the other commit and then cherry-pick it again, but I would lose those resolved conflicts.
What is the best way to deal with such situation?