Search code examples
mercurial

Mercurial - compare local and remote repositories?


In Git, there is the command

git remote show <remote>

When properly configured, this will show you the status of the remote compared to your local repository, including whether there are pending changes in either. I can't find a similar command in Mercurial. Am I missing something or does it just not exist?


Solution

  • Perhaps hg summary --remote?