Mercurial - 比较本地和远程存储库?
在 Git 中,有一个命令,
git remote show <remote>
当正确配置时,这将显示远程存储库与本地存储库相比的状态,包括两者中是否有待处理的更改。我在 Mercurial 中找不到类似的命令。我错过了什么还是它根本不存在?
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?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
也许
hg summary --remote
?Perhaps
hg summary --remote
?要比较本地和远程存储库,请按照以下步骤操作:
请参阅 GenerateDiffBetweenRepositories
To compare local and remote repositories follow these steps:
See GenerateDiffBetweenRepositories