Is there a way to conveniently compare the first (i.e. oldest) and latest commits of a repository on GitHub?
What I know so far
This method is great:
Even better, we can save having to copy/paste the last commit by using HEAD
, like this:
https://github.com/rails/rails/compare/db045dbbf60b53dbe013ef25554fd013baf88134...HEAD
Is there a way to avoid having to find/copy/paste the first commit?
The ways I know of are require a third party browser hack, or downloading the repo and running git log --reverse
, I just wonder if there's something already built into GitHub that can avoid this? (e.g. something like https://github.com/rails/rails/compare/FIRST...HEAD
would be ideal, if it exists).