Mercurial:获取特定文件的当前变更集
在 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您缺少的概念是所有文件都是相同的变更集。与 SVN 不同,您更新整个工作目录,而不仅仅是文件夹和文件。所以您想要:
仅获取转速号和哈希值,或者
获取有关您当前工作目录所在评论的信息,或者
获取有关您所在结帐的详细信息。
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:
to get just the rev number and hash, or
to get info about the comment your current working dir is at, or
for detailed info about what checkout you're at.
最简单的是
hg log -l1 path/to/file
。Simplest is
hg log -l1 path/to/file
.