When doing a regular git commit, git commit --verbose shows the diff in the text editor when writing the commit message.
git commit --verbose
Suppose I am doing an interactive r
You can do:
git -c commit.verbose=true rebase --continue
If you get tired copying that command you can create an alias in your ~/.gitconfig:
~/.gitconfig
[alias] myrebasecontinue = "!git -c commit.verbose=true rebase --continue"
And now just do:
git myrebasecontinue