I want to change a pretty old commit message using:
git rebase -i sha1-of-commit^
That's nice, I do git commit --amend
and edit the message, but things get bad when I do:
git rebase --continue
I encounter multiple conflicts but don't understand why as the whole conflict resolution has obviously already been done in the past, and git should just move forward until all commits are rebased.
How can I finish the rebase quickly without having to handle these old conflicts? I just want to change a simple (and old) commit message after all...