git clone 或者是vscode clone 时遇到the remote end hung up unexpectedly

复制代码
fatal: the remote end hung up unexpectedly
fatal: early EOF
fatal: index-pack failed

使用git clone总是报错

查看原因有三种可能:要么是缓存不够,要么是网络不行,要么墙的原因。

如果是网络不行,可以配置git的最低速度和最低速度时间:

复制代码
git config --global http.lowSpeedLimit 0
git config --global http.lowSpeedTime 999999

【补充】文件太大的解决方法:

当clone或者push git项目时,文件太大也会出现fatal: The remote end hung up unexpectedly

此时需要修改.gitconfig配置文件,打开终端,执行指令:

git config http.postBuffer 524288000

将postBuffer的缓存设置为500M即可。

参考 https://blog.csdn.net/Cai_deLong/article/details/115255735

相关推荐
编程小Y5 小时前
git命令行和GUI工具有什么区别
git
还下着雨ZG8 小时前
Git:版本控制工具Git的详细介绍
git
老友記8 小时前
git 预发布版本release分支
git
Nerd Nirvana8 小时前
15个提升开发效率的VS Code插件推荐
linux·vscode·开发工具·嵌入式软件开发·插件使用·智能采集设备·边缘终端
naruto2279 小时前
git回退代码
git·hard·soft·mixed
硅农深芯9 小时前
是时候跟GitBucket说再见了
git·单片机
天開神秀9 小时前
解决Kiro无法安装中文插件以及其他插件问题
ide·kiro·antigravity
I***t7169 小时前
Go环境搭建(vscode调试)
开发语言·vscode·golang
取名真是9 小时前
git仓库理解
git
b***666112 小时前
【golang学习之旅】使用VScode安装配置Go开发环境
vscode·学习·golang