Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have cloned a github repository and made no changes locally. Github repository moved forward with commits on the same branch.

  1. How do I find a diff between my local repository and the original github repository?
  2. How do I find a diff between my working copy and the original github repository?
  3. How do I find a diff between my local repository and another github repository of the same project?

Thank you!

share|improve this question

2 Answers

1) Add any remote repositories you want to compare:

git remote add foobar git://github.com/user/foobar.git

2) Update your local copy of a remote:

git fetch foobar

Fetch won't change your working copy.

3) Compare any branch from your local repository to any remote you've added:

git diff master foobar/master
share|improve this answer
Will I need git fetch before diff? I guess there is no way to diff without it. – Gemseeker Mar 2 '11 at 3:17
Yes, this is correct. I've updated my answer. – dbyrne Mar 2 '11 at 3:24
This is actually a reply to question 3 only (diff with another github repo). – Ruslan Kabalin Mar 2 '11 at 10:44
2  
Nothing distinguishes the "original github repository" from any other remote repository. Or am I misunderstanding something? – dbyrne Mar 2 '11 at 14:16

Another reply to your questions (assuming you are on master and already did "git fetch origin" to make you repo aware about remote changes):

1) Commits on remote branch since when local branch was created:

git diff HEAD...origin/master

2) I assume by "working copy" you mean your local branch with some local commits that are not yet on remote. To see the differences of what you have on your local branch but that does not exist on remote branch run:

git diff origin/master...HEAD

3) See the answer by dbyrne.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.