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 e开发者_如何转开发ither. I can't find a similar command in Mercurial. Am I missing something or does it just not exist?
Perhaps hg summary --remote
?
To compare local and remote repositories follow these steps:
- go to local repo folder (use cd path_to_local_repo)
- run "hg outgoing -p path_to_remote_repo" (without quotes)
See GenerateDiffBetweenRepositories
精彩评论