Aside from writing an alias or script, is there a shorter command for getting the diff for a particular commit?

git diff 15dc8^..15dc8

If you only give the single commit id git diff 15dc8, it diffs that commit against HEAD.

8 s
8

Use git show $COMMIT. It’ll show you the log message for the commit, and the diff of that particular commit.

Tags:

Leave a Reply

Your email address will not be published. Required fields are marked *