[git] out of memory malloc failed

参考:

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

git上传代码时报错:

fatal: Out of memory, malloc failed (tried to allocate 524288000 bytes)

处理办法:

打开cmd,依次输入:

c 复制代码
git config --global pack.windowMemory 50m
git config --global http.postbuffer 524288000
git repack

或者修改本地的.gitconfig文件

c 复制代码
[http]
postbuffer = 524288000
[pack]
windowMemory = 50m

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

相关推荐
AA陈超1 小时前
Git常用命令大全及使用指南
笔记·git·学习
无限进步_2 小时前
C语言数组元素删除算法详解:从基础实现到性能优化
c语言·开发语言·windows·git·算法·github·visual studio
松涛和鸣2 小时前
16、C 语言高级指针与结构体
linux·c语言·开发语言·数据结构·git·算法
楠语2 小时前
从指针行为理解Git中的reset操作
git
扛麻袋的少年4 小时前
git reset 和 git reflog 解决代码分支提交错误
git
放学有种别跑、6 小时前
GIT使用指南
大数据·linux·git·elasticsearch
雨雨雨雨雨别下啦6 小时前
【从0开始学前端】 Git版本控制系统
前端·git
happyCoder7 小时前
VS Code Git 神器:内置功能与GitLens插件使用技巧
git·github
小番茄夫斯基7 小时前
深入解析 git merge 和 git rebase 的区别
git
不会写程序的未来程序员7 小时前
详细的 Git 操作分步指南
大数据·git·elasticsearch