下载库:“svn co ...”正在阻塞
我想下载一个库,在它的网页上写着:
If you want to download to the last committed version:
svn co svn://...
然后我在终端中运行该命令,它开始复制文件:
A .../test
A .../test/ctest1.c
A .../test/ctest2.c
然后它被阻塞: 10 分钟没有任何变化。
有谁知道发生了什么事?有人可以帮忙吗?
编辑1:如果我想取消这次结账,我只需要关闭终端,并删除本地目录,是否正确?
I want to download a library, on its web page, it is written:
If you want to download to the last committed version:
svn co svn://...
Then I run that command in a terminal, it started to copy files:
A .../test
A .../test/ctest1.c
A .../test/ctest2.c
Then it is blocking: for 10 minutes nothing has changed.
Does anyone know what is happening? Could anyone help?
Edit1: If I want to cancel this checkout, I just need to close the terminal, and delete the local directory, is it correct?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
使用svn ls svn://...检查这个SVN URL(列出svn url而不检查),然后您就可以了解哪个文件导致问题,然后svn info svn://.. ./file将为您带来有关此文件的更多信息。
Check this SVN URL with svn ls svn://... (list svn url without checkout), then you can understand which file causes trouble, then svn info svn://.../file will bring you more information on this file.