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

相关推荐
夜月yeyue24 分钟前
嵌入式开发中的 Git CI/CD
c++·git·单片机·嵌入式硬件·ci/cd·硬件架构
真人不梦1 小时前
Lazygit: 从0到熟练使用,你需要的都在这里
git·github
denggun123456 小时前
图片上传git时压缩
git·ios·objective-c·iphone·xcode
行走的陀螺仪7 小时前
git-旧项目继续开发新功能,同时还要维护线上版本
git·git push·git commit·git 协同开发
fendouweiqian12 小时前
git提交与commitlint规则
git
C.咖.20 小时前
Linux环境下——Git 与 GitHub
linux·git·github·远程仓库
杂鱼豆腐人1 天前
pnpm环境下防止误使用npm的方法
前端·git·npm·node.js·git bash
摇滚侠1 天前
GIT版本管理工具轻松入门 | TortoiseGit,Git 介绍软件安装配置,笔记01
笔记·git
山有木兮木有枝_1 天前
“误操作导致 feat 功能未生效,尽管 merge 已完成”
git
百锦再1 天前
第14章 智能指针
android·java·开发语言·git·rust·go·错误