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

发布于 2024-11-27 07:05:56 字数 168 浏览 1 评论 0原文

在 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

女中豪杰 2024-12-04 07:05:56

要比较本地和远程存储库,请按照以下步骤操作:

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

请参阅 GenerateDiffBetweenRepositories

To compare local and remote repositories follow these steps:

  1. go to local repo folder (use cd path_to_local_repo)
  2. run "hg outgoing -p path_to_remote_repo" (without quotes)

See GenerateDiffBetweenRepositories

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文