如何显示子存储库更新进度?
我有一个包含 SVN 子存储库的 Mercurial 存储库。在 hg update
期间,Mercurial 在处理 .hgsubstate
文件期间冻结。据我所知,这是因为 Mercurial 在后台执行 svn 命令来提取 SVN 的正确版本。
这对我的用户来说非常不直观,因为 SVN 子存储库相当大,而且整个看起来像是挂了。
有没有办法在这样的操作期间转储 svn 输出?
I have a Mercurial repository that contains a SVN subrepository. During hg update
Mercurial freezes during processing of .hgsubstate
file. I understand that this is because Mercurial executes svn
command in background that pulls correct revision of SVN.
It is very unintuitive for my users because SVN subrepository is quite big and whole looks like having a hung.
Is there a way to dump svn output during such operation?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您是否尝试过使用
hg -v
?这通常会使 Mercurial 更加详细,您希望将详细标志传递给svn
。Have you tried using
hg -v
? That normally makes mercurial more verbose, which you would expect to pass on verbosity flags tosvn
.