22 ms·
Re: continuing a partial rebase I haven’t tried it myself, but since you know commits A and B have already been rebased and had their conflicts resolved, can’t
by gcarvalho 2y ago
Re: continuing a partial rebase
I haven’t tried it myself, but since you know commits A and B have already been rebased and had their conflicts resolved, can’t you instead rebase -i on top of the partial-rebase branch and then drop A and B?
I think this way at least you still benefit from the rebase --edit-todo, which you do not when cherry-picking C^..F.
- terminalbraid 2y agoI had the same thought when reading and I don't see why not as long as you make sure you drop the older commits correctly.
- thaliaarchi 2y agoOr easier, do an interactive rebase and mark the last commit which is in the partial-rebase branch for editing. Then, do `git reset --hard partial-rebase` and continue the rebase.