当前位置:   article > 正文

error: RPC failed; curl 18 transfer closed with outstanding read data remaining error: 2406 bytes of

error: RPC failed; curl 18 transfer closed with outstanding read data remaining error: 2406 bytes of
error: RPC failed; curl 18 transfer closed with outstanding read data remaining
error: 2406 bytes of body are still expected
fetch-pack: unexpected disconnect while reading sideband packet
fatal: early EOF
fatal: fetch-pack: invalid index-pack output
  • 1
  • 2
  • 3
  • 4
  • 5

出现以上错误有以下原因

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

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

git config --global http.postBuffer 524288000
  • 1

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

此时重新克隆即可

2.网络下载速度缓慢

修改下载速度

git config --global http.lowSpeedLimit 0
git config --global http.lowSpeedTime 999999
  • 1
  • 2
3.以上两种方式依旧无法clone下,尝试以浅层clone,然后更新远程库到本地
git clone --depth=1 http://xxx.git
git fetch --unshallow
  • 1
  • 2
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/羊村懒王/article/detail/707599
推荐阅读
相关标签
  

闽ICP备14008679号