$ hg pull
Password:
pulling from ssh://[email protected]:22//home/usr/xxx/repo
searching for changes
adding changesets
adding manifests
adding file changes
然后继续显示上述情况10分钟以上。有没有办法告诉进展以及它是否仍然存在或已经死亡?
至于你的后续问题:如果Mercurial正在跟踪一个文件(也就是说,如果你hg add
和后来的hg commit
subdir1/subsubdir1/foobar.c
)那么它就不会忽略它。所以.hgignore
只能帮助你清理?
中hg status
(未知文件)列出的条目 - 它对跟踪文件没有任何影响。
progress extension是你的朋友。您还可以将-v/--verbose
和--debug
开关添加到hg pull
查看更多数据。