git太大无法下载的问题解决 - 莫冲的专栏 - CSDN博客

就是这个问题 亲测可用

[linjinyu@localhost superdesk_boss]$ git config --global -l
user.name=linjinyu
user.email=rain16881@gmail.com
core.autocrlf=input
http.postbuffer=52428800000
[linjinyu@localhost superdesk_boss]$ git config --global http.postbuffer 2147483648
[linjinyu@localhost superdesk_boss]$ git config --global -l
user.name=linjinyu
user.email=rain16881@gmail.com
core.autocrlf=input
http.postbuffer=2147483648

有的git非常大,用git图形工具或者命令行都不行,会提示
fatal: Out of memory, malloc failed (tried to allocate 3179053026 bytes)
error: RPC failed; result=52, HTTP code = 0
fatal: The remote end hung up unexpectedly

修改了git的内存分配,还是不行(GIT有3G多,非常恐怖),所以怎么调大postBuffer都没用
git config --global http.postBuffer 1024266000000
修改
git config --global windowMemory 512m
也没用
查看已有的设置
git config --global -l

但是上述修改在push或clone一个很小的git时也会报内存不足的错误。这是因为将postBuffer设置太大了。将它改小,又没问题了。

好了。那怎么下载这么大的git呢?

参考下面的说明
https://ilmvfx.wordpress.com/2015/09/01/git-how-to-speed-up-operations-by-checkout-only-specific-files-from-huge-repo/

用下面的命令,只复制一层深度的git,不带任何历史,大小就剩下800多M 了
git clone <repo_url> --branch <tag_name> --depth 1 

如果需要删除某项git设置
git config --system (or --global or --local) --unset hooks.announcelist | pack.deltacachesize


Original url: Access
Created at: 2019-01-22 19:46:35
Category: default
Tags: none

请先后发表评论
  • 最新评论
  • 总共0条评论