使用git clone命令克隆文件出现error: RPC failed; curl 18 transfer closed with outstanding read data remaining问题
2021-02-02 02:13
标签:pos end git git clone fatal remote color curl col 在使用git clone命令从github克隆源码到电脑时出现了以下问题 原因是因为curl的postBuffer的默认值太小,我们需要调整它的大小,在终端重新配置大小 在这里,我把postBuffer的值配置成500M,对笔者来说已经够了。可以根据你需要下载的文件大小,将postBuffer值配置成合适的大小。 这样已经配置好了,如果你不确定,可以根据以下命令查看postBuffer。 使用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.htmlfatal: 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
git config --global http.postBuffer 524288000
git config --list
下一篇:CSS3美化网页元素
文章标题:使用git clone命令克隆文件出现error: RPC failed; curl 18 transfer closed with outstanding read data remaining问题
文章链接:http://soscw.com/essay/49753.html