获取远程 Mercurial 存储库的提示变更集

发布于 2024-12-27 16:45:30 字数 144 浏览 0 评论 0原文

我的 .hg/hgrc 文件包含以下行:

default = http://some/remote/repository

是否有一个快速命令来打印该存储库的提示修订版(可能位于也可能不在我的存储库中)本地存储库)?

My .hg/hgrc file has the line:

default = http://some/remote/repository

Is there a quick command to print the tip revision of that repository (which may or may not be inside my local repository)?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(3

生寂 2025-01-03 16:45:30

您可以像这样使用 identify 命令

$ hg identify $(hg paths default)

这是可以操作的少数命令之一远程存储库。如果您需要有关远程存储库的更多信息,那么我建议您查看hg传入

You can use the identify command like this:

$ hg identify $(hg paths default)

This is one of the few commands that can operate on a remote repository. If you need more information about the remote repository, then I suggest you take a look at hg incoming.

最终幸福 2025-01-03 16:45:30

以下返回远程存储库的最新变更集编号(提示):

hg identify --id http://www.myrepo.com

The following returns the latest changeset number (tip) of a remote repository:

hg identify --id http://www.myrepo.com
各空 2025-01-03 16:45:30

hg id default

这是“hg recognize $(hg paths default)”的缩写形式。

hg id default

This is a shorter form of "hg identify $(hg paths default)".

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