I'm fixing some commit messages of a series of commits. I start
git rebase --interactive
mark some commits for rewording and then edit the messages. It'd be really helpful if I could see the diff of each commit in the editor, just like when doing git commit -v
. Is something like this possible with rebase
?
(I could also just edit
the commits and then see the diffs, but this is much slower and less convenient.)