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

相关推荐
KieranYin8 小时前
Git_查看已删除文件的历史
git
星谐10 小时前
GitX智能版本控制助手:告别Git命令行,让版本控制更高效
git
错把套路当深情11 小时前
Git 常用命令大全
git
向上_5035829115 小时前
解决git提交冲突
git
学习使我健康15 小时前
Git Submodule 深度避坑指南
git
Mapleay16 小时前
git notes
git
zhougl99617 小时前
非root用户,链接ssh,并上传git
运维·git·ssh
muddjsv1 天前
Git 代码同步与协作的核心命令全解析
git
历程里程碑1 天前
2. Git版本回退全攻略:轻松掌握代码时光机
大数据·c++·git·elasticsearch·搜索引擎·github·全文检索
身如柳絮随风扬1 天前
Dubbo 与 Spring Cloud 终极对比:RPC 框架 vs 微服务生态
spring cloud·rpc·dubbo