range-diff shows what a rebase actually changed
After a force push the reviewer's question is "what changed since I looked". A normal diff between the two branch tips is useless because the base moved. range-diff compares the two series commit by commit.
git range-diff main feat@{1} featIt shows which commits are identical, which were reworded, and the diff of the diff for the ones that changed.
gitcode-review