vote up 3 vote down star
3

How can I see incoming commits in git? Or even better, see what I just git fetch/git pulled?

Edit: To clarify the question: someone tells me that, to get some fixes, I should pull from their repository. My goal is to see what their changes are before I accept them. git pull automatically merges, which is not what I want. git fetch will grab them without merging, but I'm unsure how to view what exactly I just pulled in. The reason for the original phrasing is that I normally use Mercurial, where the command would be hg incoming <repo name here>—a command for which git seems to lack an analog.

flag

4 Answers

vote up 3 vote down check

incoming isn't quite a direct mapping in git because you can (and I often do) have multiple repos you're pulling from, and each repo has multiple branches.

If there were an equivalent of hg's incoming command, it'd probably be this:

git fetch && git log ..origin/master

That is, "go grab all of the stuff from the upstream, and then compare my current branch against the upstream master branch."

Similarly, outgoing would be this:

git fetch && git log origin/master..

In practice, I just type those manually (even though I created an alias for one of them) because it's easy to have lots of local branches tracking and being tracked by lots of remote branches and have no trouble keeping it together.

link|flag
Also you might want to use git diff --stat origin/master to see the diffstat that git pull shows after succesfull merge. – Jakub NarÄ™bski Aug 27 at 10:03
vote up 2 vote down

You may also be interested in git whatchanged which gives a good overview of changes that have been made in some range of commits.

If you want to review what you're about to pull, do a git fetch first, which only updates local tracking branches for the remote repository (and not any of your branches), and then use any command that shows you the new commits that you're about to pull. For example:

git whatchanged ..origin

This is shorthand for showing the commits between "the common ancestor of wherever I am now and origin" through "origin".

link|flag
ahh, I like this better than using git log – jpsilvashy Aug 26 at 19:39
vote up -1 vote down

You may want to examine the difference between two repositories. Assumed you have a local branch 'master' and a remote-tracking branch 'origin/master', where other people commit their code, you can get different stats about the differences of the two branches:

git diff --summary master origin/master

git diff --stat master origin/master

git diff --numstat master origin/master

git diff --dirstat master origin/master

git diff --shortstat master origin/master

git diff --name-only master origin/master

git diff master origin/master
link|flag
question isn't about viewing the diff, it's about visualizing the commits and pull that the user has done. – jpsilvashy Aug 25 at 23:19
True, but I feel as if Netzpirat is close; if this were showing me logs instead of diffs, it'd be perfect. – Benjamin Pollack Aug 25 at 23:56
vote up 1 vote down

There is no such thing as "incoming commits" users commit locally and push them. I would open up gitx or gitk(that comes with git) and check out what the repos looks like... I think that will give you a clear view.

use: gitk --all to see.

link|flag
Please see my clarified question. – Benjamin Pollack Aug 26 at 0:00
Ahh, I see what you mean now, Dustin's answer is dead on. thanks for more details. – jpsilvashy Aug 26 at 19:37

Your Answer

Get an OpenID
or

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