vote up 4 vote down star
3

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 a couple of changes that need pushing to the remote branch. Alternatively, I can use git log --decorate and the output would 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 like this with Mercurial?

flag

1 Answer

vote up 10 vote down check

hg outgoing - will show you the changesets that are waiting to be pushed to a remote repository.

hg incoming - shows new changesets that are in the remote repository.

link|flag

Your Answer

Get an OpenID
or

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