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 显示长时间运行的推送或拉取操作的进度?谷歌基本上告诉我“不”,但有人知道吗?我期待着像hg pull -v......
hg pull -v
Mercurial 3.5 默认启用进度。
早期版本可以使用自 1.5 版起提供的标准进度扩展。只需将其添加到您的hgrc文件即可启用扩展:
[extensions] progress =
然后,您将看到克隆、推送、拉取和其他操作的进度条。默认情况下,仅在初始延迟 3 秒后才会显示进度条。您可以通过添加以下内容轻松更改此设置:
[progress] delay = 1.5
到您的 hgrc 文件。hg help progress启用扩展后查看。
hg help progress
-v / --详细
是适用于所有子功能的全局选项。
如果你想要额外的数据:
hg --debug -v pull