列出两个 hg 变更集之间不同的文件
可能的重复:
生成 hg 版本之间更改的文件列表
hg diff -r 5 -r 10
将给出修订版 5 和 10 之间的差异。但我想具体查看不同的文件列表 - 我不想看到完整的差异。有没有快速的方法来做到这一点?
Possible Duplicate:
Generating a list of which files changed between hg versions
hg diff -r 5 -r 10
will give the differences between revisions 5 and 10. But I want to see specifically just a list of files that are different - I don't want to see the full diffs. Is there a quick way to do this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
hg status
可以做到这一点。hg status
的主要目的是显示工作目录中修改的文件(与上次提交相比)。但是您可以使用
--rev
参数来让它比较两个特定的修订版本,如下所示:hg status
can do this.The main purpose of
hg status
is showing modified files in the working directory (in comparison to the last commit).But you can use the
--rev
parameter to let it compare two specific revisions instead, like this: