我正在使用Tortoise -Hg从CodePlex克隆一个 fork并在过程中间停止克隆。我已经尝试了6次以上,它确实有问题。
我正在使用Tortoise-Hg 的可视化客户端,我将源作为https://hg.codeplex.com/forks/xxx/xxxx
并选择了一个目的地
首次使用压缩方法
这是命令提示符中出现的内容
% hg clone --verbose -- https://hg.codeplex.com/forks/xxx/xxxx xxxx
但是这个过程开始得很快,然后就挂断了。
requesting all changes
adding changesets[Happen Fast]
adding manifests[Happen Fast]
adding file changes[Hangs in the middle]
transaction abort!
rollback completed
abort: stream ended unexpectedly (got 147721 bytes, expected 422805)
[command returned code 255 Sun Mar 31 15:52:26 2013]
然后我尝试了未压缩的方法
% hg clone --uncompressed --verbose -- https://hg.codeplex.com/forks/xxx/xxxx xxxx
这也停止在过程的中间。
streaming all changes
4033 files to transfer, 37.2 MB of data
abort: unexpected response from remote server: empty string
[command returned code 255 Sun Mar 31 15:22:44 2013]
我第 7 次尝试了它,它比以前的尝试要多得多,但得到了更多的字节got 74673 bytes, expected 256973
这有什么问题,我之前使用相同版本的 Tortoise-Hg 克隆CodePlex项目。这是非常耗时的。我在做什么有问题吗?我该如何解决这个问题?