Am 20.03.20 um 23:30 schrieb George Spelvin: > I'm cleaning up a patch series for submission, and came across a fixup in > patch #4/20 that belongs in #2/20. > > Unfortunately, I can't go back two patches to apply the fix until I get to > the end of the current rebase, then go back down to clean it up. :-( In such cases, I usually - unstage the changes of the current commit - stage the fixup - `git commit --fixup @~2` - stage what I had unstaged first - then continue At the end of the current rebase, a `git rebase -i --autosquash` does the final cleanup. -- Hannes