Mercurial - 比较本地和远程存储库?

时间:2011-07-29 19:00:41

标签: mercurial

在Git中,有命令

git remote show <remote>

如果配置正确,这将显示与本地存储库相比的远程状态,包括是否存在待处理的更改。我在Mercurial找不到类似的命令。我错过了什么或者它不存在吗?

2 个答案:

答案 0 :(得分:8)

也许是hg summary --remote

答案 1 :(得分:0)

要比较本地和远程存储库,请执行以下步骤:

  1. 转到本地存储库文件夹(使用cd path_to_local_repo)
  2. 运行“ hg传出-p path_to_remote_repo”(不带引号)

请参见GenerateDiffBetweenRepositories