When doing a regular git commit, git commit --verbose shows the diff in the text editor when writing the commit message.
Suppose I am doing an interactive rebase (git rebase --interactive) to edit previous commits. To 'continue' rebasing, I run git rebase --continue. This opens a text editor for editing the commit message, but it does not show the diff. After making changes to a commit, how can I display the diff when (re)writing the commit message during an interactive rebase?
git rebase --continue --verbose doesn't seem like a valid command...
git rebase --continueopen a text editor?git addto mark the changes,git rebase --continueopens a text editor.