[git] out of memory malloc failed

2024-01-08 11:30:40

参考:
https://segmentfault.com/a/1190000042740954?utm_source=sf-similar-article

git上传代码时报错:
fatal: Out of memory, malloc failed (tried to allocate 524288000 bytes)

处理办法:
打开cmd,依次输入:

git config --global pack.windowMemory 50m
git config --global http.postbuffer 524288000
git repack

或者修改本地的.gitconfig文件

[http]
postbuffer = 524288000
[pack]
windowMemory = 50m

再在cmd中输入git repack,回车。

文章来源:https://blog.csdn.net/sinat_26809255/article/details/135402452
本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。