git克隆失败提示RPC failed的解决方法

现象

bash 复制代码
$ git clone https://github.com/guillemj/dpkg.git
Cloning into 'dpkg'...
remote: Enumerating objects: 113312, done.
remote: Counting objects: 100% (18045/18045), done.
remote: Compressing objects: 100% (3915/3915), done.
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, error, RPC failed, curl 18 transfer closed with outstanding read data remaining

git pull也会遇到同样的错误,解决方法相同。

原因

git的postBuffer设置小于下载仓库所需。

解决方法

在Git Bash中执行:

bash 复制代码
git config --global http.postBuffer 524288000
git config --global https.postBuffer 524288000

其中524288000的单位是字节,相当于500MB。如果修改之后还是报相同的错误可以尝试继续增大。

参考资料:

git pull 报错:git - error: RPC failed; curl 18 transfer closed with outstanding read data remaining 解决_git pull error: rpc failed; curl 18 transfer close-CSDN博客https://blog.csdn.net/LJFPHP/article/details/77702476error: RPC failed; curl 18 transfer closed with outstanding read data remaining-CSDN博客https://blog.csdn.net/weixin_38382857/article/details/88102705

相关推荐
地球没有花1 天前
gitlab cicd首次操作
运维·git·ci/cd·gitlab
360智汇云1 天前
容器云质量加固方案
rpc·kubernetes·dubbo
奥吼吼~~1 天前
标准输入输出stdio和JSON-RPC
网络协议·rpc·json
无限进步_1 天前
【C语言】贪吃蛇游戏设计思路深度解析:从零开始理解每个模块
c语言·开发语言·c++·git·游戏·github·visual studio
达子6662 天前
git使用应用实战大全
git
P***25392 天前
Git教程
git
Slow菜鸟2 天前
Java 开发环境安装指南(五) | Git 安装
java·git
计算衎2 天前
Git 命令 作用、常用选项、示例、何时使用与注意事项指南
git·源代码管理
小生不才yz2 天前
(三)分支与合并 - git cherry-pick 命令的使用
git
hadage2332 天前
--- git 笔记 ---
笔记·git·elasticsearch