Display two-dot diff variant in PR "Files changed" #3027
obfuscode posted onGitHub
Based off this discussion, a major shortcoming is that GitHub is showing the three-dot diff for PRs instead of the two-dot diff.
From Matt at GitHub Support:
We show what's called a "three-dot diff" which is the difference between the latest commit on the HEAD branch and the last common ancestor commit with the base branch. So if you forked off of a repo a while ago and things have changed in the parent repo since then, or if you opened a PR from the master branch and then the master branch has changed in the meantime, the diff wouldn't show that.
It sounds like you'd rather see a "two-dot diff", which would show the changes between the two most recent commits on each branch. If you'd like, you can merge the base branch back into the HEAD branch. That updates the last common ancestor and would be more likely to show you what you're expecting to see there.
Why this is a problem
- You cannot see the context of the change against the current base making it extremely difficult to judge if PR'd code should be included
- The merge itself uses a two-dot diff and will show merge conflicts even if everything in the PR looks good
- The only way to compare the actual current base vs. the incoming PR head is to pull down the PR's remote and manually compare it against your local head (even viewing it through any of the GUIs will show the ancestor commit)
- You cannot merge base back into a contributor's fork
- Even if you request them to update, subsequent PR merges throw it out of date again immediately
- This is a long-lived issue that GitHub most likely won't change
Proposed Solution When viewing the "Files changed", if the PR references an ancestor commit, Refined GitHub adds a button to show the two-dot diff (current base diffed with PR head) and grabs the raw view of each file (within a reasonable limit) and replaces(?) the current view (or a tab/toggle) that shows the same lines as displayed in the PR's change.
Feature URL Location https://github.com/YourOrg/SomeProject/pull/123/files