我试图克隆这个repo几次,但得到了同样的错误。是因为,它是巨大的,我的连接很慢?
$ git clone https://git01.codeplex.com/typescript
Cloning into 'typescript'...
remote: Counting objects: 408886, done.
remote: Compressing objects: 100% (32748/32748), done.
Receiving objects: 4% (20335/408886), 63.88 MiB | 250.00 KiB/s
Receiving objects: 8% (33984/408886), 80.64 MiB | 307.00 KiB/s
Receiving objects: 19% (79636/408886), 143.34 MiB | 253.00 KiB/s
Receiving objects: 37% (154937/408886), 267.23 MiB | 329.00 KiB/s
Receiving objects: 45% (187088/408886), 353.31 MiB | 387.00 KiB/s
Receiving objects: 53% (218438/408886), 477.12 MiB | 299.00 KiB/s
fatal: The remote end hung up unexpectedly47.67 MiB | 367.00 KiB/s
fatal: early EOF
fatal: index-pack failed
(我按了几次ENTER,所以保留了消息Receiving objects: x%
)。
我试过了,
git clone --depth = 1 https://git01.codeplex.com/typescript 克隆到'打字稿' ...
它从未表现出任何进展。我还有什么其他选择才能获得最新版本。 (网站上有一个下载链接,但它不是git repo,因此我无法git pull
更新)
感谢
答案 0 :(得分:3)
尝试运行以下内容:
git config pack.windowMemory 10m
git config pack.packSizeLimit 20m
然后重试git clone。
答案 1 :(得分:2)
它可能是您的Internet连接,因为我能够成功克隆存储库。但无论如何,如果"手册"下载创建一个等同于git存储库的目录结构,您只需下载它并通过以下方式初始化存储库:
$ git init
然后运行
$ git remote add origin https://git01.codeplex.com/typescript
将原始存储库添加为远程源。最后运行:
$ git pull
从原始存储库中获取任何新数据。
您可以选择创建一个新的空存储库并执行上述步骤。但是,这将再次导致git下载数据,这可能会像以前一样再次中断。
答案 2 :(得分:1)
首先尝试高速连接。对于共享带宽,请尝试在负载较小时克隆。如果仍然无法正常工作,
请使用以下命令,
git config --global pack.windowMemory 256m
git config --global pack.packSizeLimit 256m
git config --global http.postBuffer 1024M
git config --global http.maxRequestBuffer 512M
git config --global core.compression 9
然后尝试再次克隆。