列出两个 hg 变更集之间不同的文件

发布于 2024-12-26 23:40:34 字数 436 浏览 0 评论 0原文

可能的重复:
生成 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 技术交流群。

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

发布评论

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

评论(1

友欢 2025-01-02 23:40:34

hg status 可以做到这一点。

hg status 的主要目的是显示工作目录中修改的文件(与上次提交相比)。
但是您可以使用 --rev 参数来让它比较两个特定的修订版本,如下所示:

hg status --rev 5 --rev 10

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:

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