git clone到本地是报错:fatal:out of memory malloc failed tried to allocate完美解决,我就是这样解决的,希望对你有用
程序员文章站
2022-07-16 09:21:10
...
解决问题解决问题git clone到本地是报错:fatal:out of memory malloc failed tried to allocate
GIT处理超大大文件时拉取报错
git pull/push 因提交文件内容过大而失败的解决方案
git太大无法下载的问题解决
git在windows下clone、pull或者push内存溢出的解决办法
git clone https://example.com/example/example.git
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 clone 产生这个问题的时候,在第一次克隆的时候,把克隆深度设置为1,然后再fetch
git clone --depth 1 https://example.com/example/example.git
cd example
git fetch --unshallow
depth 1的作用是只checkout第一个头部分支。这时候你可以看下checkout下来的Head版本指向了哪个分支,查看当前已获取的分支:
$ git branch -a
最后通过分支名称去拉取分支信息以及checkout。依次执行如下指令:
$ git remote set-branches origin '远程分支名称'
$ git fetch --depth 1 origin 远程分支名称
$ git checkout 远程分支名称
完美解决,核心原因时因为内存溢出,一般出现这种状况是因为项目过大超过1G