获取远程 Mercurial 存储库的提示变更集
我的 .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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
您可以像这样使用 identify 命令:
这是可以操作的少数命令之一远程存储库。如果您需要有关远程存储库的更多信息,那么我建议您查看
hg传入
。You can use the identify command like this:
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
.以下返回远程存储库的最新变更集编号(提示):
The following returns the latest changeset number (tip) of a remote repository:
hg id default
这是“hg recognize $(hg paths default)”的缩写形式。
hg id default
This is a shorter form of "hg identify $(hg paths default)".