While working on a branch that I\'ve opened a pull request on, I would like to see the exact same diff that GitHub displays on the commandline. What is the particular git diff c
Assuming that you want to check against the base branch called master
:
git diff $(git merge-base --fork-point master)
This will give all the changes since the branch was made, including yet uncommitted changes!
This command gives the same results as the one in @pic's answer, but it's a bit simpler as it doesn't require knowing the feature-branch.
If you want only the committed changes, similar to gh pr diff
command as in @VonC's answer, the following command will give the same results:
git diff $(git merge-base --fork-point master) HEAD
The git diff
way approach could be more useful in some situations, since you have all the other git diff
features available. For example, if you don't want the diff, but instead want to know which files were modified, you can just pass the --name-only
:
git diff --name-only $(git merge-base --fork-point master)
which you can't do with gh
.