Using Mercurial, how can I see what changes still need to be clicked?

I'm used to git where you can run gitk and get something like the following:

gitk showing the difference between the local and remote branches

Here you can see that there are several changes that you need to click on the remote branch. Alternatively I can use git log --decorateand the output will be:

b8c2926... (refs/heads/next) Update instructions
6d9f914... Add a first go at generic x compiling
49a6dac... (refs/remotes/github/next) Ignore temp files

Is there anything similar with Mercurial?

+5
source share
1 answer

hg outgoing - will show you a set of changes awaiting pushing to a remote repository.

hg incoming - Shows new changes that are in the remote repository.

+18
source

All Articles