Here are two different questions but I think they are related.
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.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.
For the second: is there a way to see what is available and then cherry-pick the changes I want to pull?
hg incomingandhg outgoingactually do. The nearest Git equivalent I found is the--dry-runoption. Justgit pull --dry-runand you'll see a list of all the things that need to happen. – romkyns Sep 29 '12 at 10:16