Mercurial:获取特定文件的当前变更集

发布于 2024-08-23 17:31:32 字数 105 浏览 7 评论 0原文

在 Mercurial 中获取特定文件的变更集版本的最简单方法是什么?我们对 svn 所做的类似事情是在命令行中运行“svn --info”,然后获取修订号。 Mercurial 有类似的方法吗?

What is the easiest way of obtaining the changeset version of a particular file in Mercurial? A similar thing that we did for svn was to run "svn --info" in the command line and then obtain the Revision number. Is there any similar approach for Mercurial?

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

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

发布评论

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

评论(2

筱武穆 2024-08-30 17:31:32

您缺少的概念是所有文件都是相同的变更集。与 SVN 不同,您更新整个工作目录,而不仅仅是文件夹和文件。所以您想要:

hg id

仅获取转速号和哈希值,或者

hg parents

获取有关您当前工作目录所在评论的信息,或者

hg summary

获取有关您所在结帐的详细信息。

The concept you're missing is that all files are all the same changeset. Unlike SVN you update your entire working dir, not just folders and files. So you want:

hg id

to get just the rev number and hash, or

hg parents

to get info about the comment your current working dir is at, or

hg summary

for detailed info about what checkout you're at.

箹锭⒈辈孓 2024-08-30 17:31:32

最简单的是hg log -l1 path/to/file

Simplest is hg log -l1 path/to/file.

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