On GitHub, there's a way to do a "diff" between 2 commits. https://help.github.com/en/github/committing-changes-to-your-project/comparing-commits
In a nutshell, it looks like this:
https://github.com/github/linguist/compare/c3a414e..faf7c6f
If I wanted to compare between a certain commit in history vs. the current head of the branch, how would I do this? I don't want to always have to always look up the 7-character SHA code of the latest commit.
I've tried
https://github.com/github/linguist/compare/c3a414e..head
but that doesn't work.