微信公众号搜"智元新知"关注
微信扫一扫可直接关注哦!

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

报错:

1 error: RPC Failed; curl 18 transfer closed with outstanding read data remaining
2 fatal: The remote end hung up unexpectedly
3 fatal: 过早的文件结束符(EOF)
4 fatal: index-pack 失败

处理:

  究其原因是因为curl的postBuffer的认值太小,我们需要调整它的大小,在终端重新配置大小

   在这里,笔者把postBuffer的值配置成500M,对笔者来说已经够了。可以根据你需要下载的文件大小,将postBuffer值配置成合适的大小。

   git config --global http.postBuffer 524288000

   这样已经配置好了,如果你不确定,可以根据以下命令查看postBuffer。

   git config --list

参考链接https://blog.csdn.net/dzhongjie/article/details/81152983

版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。

相关推荐