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.
我已经执行hg update -C并且收到了最少的消息x files update, y files removed等。如何获得有关执行更新后哪些文件受到影响的更详细信息?
hg update -C
x files update, y files removed
如果您知道在更新之前检查了哪些变更集,您可以hg diff -r THAT_REVISION根据其他选项查看差异或统计信息。
hg diff -r THAT_REVISION
完成更新后,如果您不知道之前签出的内容,您就会陷入困境。如果这种情况发生了很多,你可以添加一个pre-update钩子,在更新之前呼应当前的修订 id。
pre-update
添加-v将为您提供更多信息 - 它列出了所有已更改的文件。
-v
奇怪的是,hg help update没有提到任何关于-v标志的事情,但它确实有效。
hg help update