Here are 2 different questions but I think they are related.

  1. When using git how do I find which changes I have committed locally but haven't yet pushed to a remote branch? I'm looking for something similar to the Mercurial command "hg outgoing"

  2. When using git how do I find what changes a remote branch has prior to doing a pull? I'm looking for something similar to the Mercurial command "hg incoming"

Also for 2. is there a way to see what is available and then cherry-pick the changes I want to pull?

link|improve this question

52% accept rate
feedback

7 Answers

up vote 39 down vote accepted

Git can't send that kind of information over the network, like Hg can. But you can run git fetch (which is more like hg pull than hg fetch to fetch new commits from your remote servers.

So, if you have a branch called master and a remote called origin, after running git fetch, you should also have a branch called origin/master. You can then get the git log of all commits that master needs to be a superset of origin/master by doing git log master..origin/master. Invert those two to get the opposite.

A friend of mine, David Dollar, has created a couple of git shell scripts to simulate hg incoming/outgoing. You can find them at http://github.com/ddollar/git-utils.

link|improve this answer
feedback
  1. Use "git log origin..HEAD"

  2. Use "git fetch" followed by "git log HEAD..origin". You can cherry-pick individual commits using the listed commit ids.

The above assumes, of course, that "origin" is the name of your remote tracking branch (which it is if you've used clone with default options).

link|improve this answer
2  
(And if you’re not tracking the remote branch, it’s “git log origin/master..HEAD”.) – plindberg Aug 17 '10 at 13:16
2  
"origin" is not the name of the remote tracking branch, it's the name of the remote. And just specifying the remote name doesn't work, you have to specify the remote tracking branch, which would be origin/master. – robinst May 25 '11 at 9:53
feedback

Not a full answer but git fetch will pull the remote repo and not do a merge. You can then do a

git diff master origin/master

link|improve this answer
feedback

Starting with Git 1.7.0, there is a special syntax that allows you to generically refer to the upstream branch: @{u} or @{upstream}.

To mimic hg incoming:

git log ..@{u}

To mimic hg outgoing:

git log @{u}..

I use the following incoming and outgoing aliases to make the above easier to use:

git config --global alias.incoming '!git remote update -p; git log ..@{u}'
git config --global alias.outgoing 'log @{u}..'
link|improve this answer
git log ..@{u} gives me these errors. (I have both origin and an upstream repository in my git config). error: No upstream branch found for '' error: No upstream branch found for '..' error: No upstream branch found for '..' fatal: ambiguous argument '..@{u}': unknown revision or path not in the working tree. Use '--' to separate paths from revisions – hced Oct 1 '11 at 13:42
You'll get those errors if your local branch isn't configured with an upstream. To fix, run git branch --set-upstream foo origin/foo. – Richard Hansen Oct 1 '11 at 18:18
worked well for me, cheers – Mark Simpson Feb 10 at 11:37
feedback

There's also this, for comparing all branches:

git log --branches --not --remotes=origin

This is what the git log man page says about this:

Shows all commits that are in any of local branches but not in any of remote tracking branches for origin (what you have that origin doesn’t).

link|improve this answer
Nice one. This is perfect. – Graham Lea Dec 8 '11 at 11:27
feedback

doesn't git status tell you if you're ahead of the remote branch?

link|improve this answer
Only after you fetch from the remote. – MitMaro Feb 10 at 13:46
feedback

git-out is a script that emulates hg outgoing quite accurately. It parses on "push -n" output, so it produces accurate output if you need to specify additional arguments to push.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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