Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
如何检查 Mercurial / Tortoise Hg 的两个修订版本之间哪些文件已更改?
我已经尝试过 tortoiseHg 的视觉差异,它不会突出显示哪些特定文件已添加、更改或未更改,您必须单击每个文件以获取详细信息
CLI 版本:hg diff -r START -r END --stat
hg diff -r START -r END --stat
样本:
>hg diff -r 4 -r tip --stat 404.php | 4 ++-- functions.php | 2 +- readme.txt | 28 +++++++++++++++++----------- screenshot.png | Bin sidebar.php | 2 +- style.css | 4 ++-- 6 files changed, 23 insertions(+), 17 deletions(-)
经过一番研究,我发现在tortoiseHg 的Directory菜单中Visual diff,您可以选择应该显示哪些文件。
Directory
Visual diff
所以我导航到Directory菜单并取消选择这些:
然后我选择了显示不同的文件
现在视觉差异仅显示在 2 个不同版本中更改的文件。