git_clone资源获取失败解决
Posted sstfy
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了git_clone资源获取失败解决相关的知识,希望对你有一定的参考价值。
github上克隆一个仓库到本地,一直失败。还以为是git安装问题,卸载重装无效;又换了个大容量的磁盘目录位置;最后ECS系统也重装还是无效。。
remote: Counting objects: 5148, done.
remote: Compressing objects: 100% (16/16), 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
然后google了下(为什么我不一开始就搜索。。。想当然瞎折腾)
原因是要克隆的仓库太大,文件多,导致git clone
失败。
解决:
- 方法1:增加git缓冲区大小
git config --global http.postBuffer 524288000
git config --list
- 方法2:浅层克隆,深度设置为1
git clone http://github.com/target.git --depth 1 # target.git 为目标地址
cd target
git fetch --unshallow
以上是关于git_clone资源获取失败解决的主要内容,如果未能解决你的问题,请参考以下文章
Oracle 数据库 - 使用UEStudio修改dmp文件版本号,解决imp命令恢复的数据库与dmp本地文件版本号不匹配导致的导入失败问题,“ORACLE error 12547”问题处理(代码片段
Python 自动化 - 浏览器chrome打开F12开发者工具自动Paused in debugger调试导致无法查看网站资源问题原因及解决方法,javascript反调试问题处理实例演示(代码片段