码迷,mamicode.com
首页 > Web开发 > 详细

使用git clone命令克隆文件出现error: RPC failed; curl 18 transfer closed with outstanding read data remaining问题

时间:2020-06-21 23:37:27      阅读:88      评论:0      收藏:0      [点我收藏+]

标签:pos   end   git   git clone   fatal   remote   color   curl   col   

在使用git clone命令从github克隆源码到电脑时出现了以下问题

fatal: The remote end hung up unexpectedly
 
fatal: early EOF
 
fatal: index-pack failed

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

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

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

   git config --global http.postBuffer 524288000

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

   git config --list

技术图片

 

使用git clone命令克隆文件出现error: RPC failed; curl 18 transfer closed with outstanding read data remaining问题

标签:pos   end   git   git clone   fatal   remote   color   curl   col   

原文地址:https://www.cnblogs.com/ZhengHengWU/p/13174151.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!