git clone报错error: RPC failed; curl 18 transfer closed with outstanding read data remaining
Posted lbrs
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了git clone报错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
这个错误产生的原因是时间太久,资源太大。
基于此,第一种考量即扩大缓存区。即在命令行输入:
git config --global http.postBuffer 524288000
然而这对我并没有用。
第二种可能是你网速太慢,导致运行失败。
因此我们可以输入:
git config --global http.lowSpeedLimit 0
git config --global http.lowSpeedTime 999999
问题解决,果然是因为我的网速太慢。??
当然,这只对我的问题有效,并不一定所有人的问题都是一样的。此外,还有通过设置浅层clone和ssh替换https的方式。
以上是关于git clone报错error: RPC failed; curl 18 transfer closed with outstanding read data remaining的主要内容,如果未能解决你的问题,请参考以下文章
git clone 报错 RPC failed; curl 18 transfer closed with outstanding read data remaining
git clone 报错 RPC failed; curl 18 transfer closed with outstanding read data remaining
git clone error:RPC failed; curl 18 transfer closed with outstanding read data remaining
Jenkins报错Error cloning remote repo 'origin'
使用git clone命令克隆文件出现error: RPC failed; curl 18 transfer closed with outstanding read data remaining问题