I need to generate a diff for a single file that will show the differences between two versions, which are actually tags in github. I then want to send this diff to someone via
I used nulltoken's answer to put together a simple convenience script for pulling up a diff between two commits on GitHub from the command line.
You can find the full script on gist, but here are the good bits:
# Parse the following patterns for repo urls to get the github repo url
# https://github.com/owner/repo-name.git
# git@github.com:owner/repo-name.git
BASE_URL="https://github.com/""$(git config --get remote.origin.url | sed 's/.*github\.com[/:]\(.*\).git/\1/')""/compare"
if [[ "$#" -eq 1 ]]; then
if [[ "$1" =~ .*\.\..* ]]; then
# Handle "git hubdiff fromcommit..tocommit"
open "${BASE_URL}/$(git rev-parse "${1/\.\.*/}")...$(git rev-parse ${1/*\.\./})"
else
# Handle "git hubdiff fromcommit"
open "${BASE_URL}/$(git rev-parse "$1")...$(git rev-parse HEAD)"
fi
elif [[ "$#" -eq 2 ]]; then
# Handle "git hubdiff fromcommit tocommit"
open "${BASE_URL}/$(git rev-parse "$1")...$(git rev-parse "$2")"
fi
It accepts as arguments branches, commits, and anything else that can be resolved by git rev-parse
. I used open
, which only works on macOS for opening webpages, so if you're on a different environment you'll want to tweak that.
As with nulltoken's answer, in order to point to a single file in the diff, you'll have to click on the file's title to make the anchor string appear in the url bar, which you can then copy.
Here is my workaround when the following issue applies.
This comparison is big! We’re only showing the most recent 250 commits
Copy the raw view of the file that you want to compare to https://gist.github.com/. Use the two specific commit points that you want to compare. Start with the older commit.
https://gist.github.com/ has a nice side-by-side diff view when you click 'Revisions'.
GitHub only exposes the way to show diff between two commits.
Provided those tags actually point to commits, the Url format would be something like
https://github.com/{user}/{repository}/compare/{from-tag}...{until-tag}
As an example, https://github.com/libgit2/libgit2sharp/compare/v0.9.0...v0.9.5 shows the diff between two versions of the LibGit2Sharp project. This diff includes all the modified files.
If you want to retrieve an url that targets a specific file:
For instance, given the diff above, the link https://github.com/libgit2/libgit2sharp/compare/v0.9.0...v0.9.5#diff-11 will point to the LazyFixtures.cs
changes that occured between version v0.9.0 and v0.9.5.
Following your comment which states that your diff is too big to be rendered through the Web interface, how about reverting to good old command line tooling? You could redirect the output of the diff to a file and then send the file as an email attachment.
$ git diff v0.9.0 v0.9.5 -- LibGit2Sharp.Tests/LazyFixture.cs > /tmp/lazyfixture.diff
Answer is for people who want to only see (Not to download) the history/reviosion of code changes of a file in the GITHUB WEB Page for previous checkin.
Go to that file in the github, then select HISTORY. This will open page with list of checkin comments link like below.
On clicking on it will show the code changes. After clicking the history; you can click on packages to see package level all files checkins.
In eclipse you can compare the history using EGit plugin and "Right click ->Compare with" on the file. How can I compare two revisions in git in Eclipse?
Since this still isn't possible here's a browser-based diff-tool method. It does not leverage automation but only requires the ability to install Chrome extensions: