使用Git pull文件时,出现"error: RPC failed; curl 18 transfer closed with outstanding read data remainin

Posted alps

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了使用Git pull文件时,出现"error: RPC failed; curl 18 transfer closed with outstanding read data remainin相关的知识,希望对你有一定的参考价值。

 

使用Git pull文件时,出现"error: RPC failed; curl 18 transfer closed with outstanding read data remaining"

 
error: RPC failed; curl 18 transfer closed with outstanding read data remaining
fatal: The remote end hung up unexpectedly
fatal: early EOF
fatal: index-pack failed

出现以上错误有以下原因

1.缓存区溢出curl的postBuffer的默认值太小,需要增加缓存

使用git命令增大缓存(单位是b,524288000B也就500M左右)

git config --global http.postBuffer 524288000

使用git config --list查看是否生效

此时重新克隆即可

2.网络下载速度缓慢

修改下载速度

git config --global http.lowSpeedLimit 0
git config --global http.lowSpeedTime 999999

3.以上两种方式依旧无法clone下,尝试以浅层clone,然后更新远程库到本地

git clone --depth=1 http://xxx.git
git fetch --unshallow

 

以上是关于使用Git pull文件时,出现"error: RPC failed; curl 18 transfer closed with outstanding read data remainin的主要内容,如果未能解决你的问题,请参考以下文章

git 在使用拉取、推送(pull或push)时时候会出现这样的错误提示

使用git pull文件时和本地文件冲突怎么办?

无法“git pull” - 主机密钥验证失败

git 不小心pull了其他分支怎么办

使用“git pull”时,如何将 Git 配置为自动从当前分支中提取?

当我可以在“git init”之后对“git pull”做同样的事情时,为啥要“git clone”? [复制]