[cofface]git push提示remote: fatal: Out of memory, malloc failed


git服务器内存1G,代码仓库超过1G,导致git push 提示remote: fatal: Out of memory, malloc failed,只需要给服务器增加下swap空间即可:

1.添加交换文件
mkdir -p /opt/temp
dd if=/dev/zero of=/opt/temp/swap bs=1024 count=4096000
目录路径和大小自己看着办就好了)
2.创建交换空间
mkswap /opt/temp/swap
3.启动新增加的4G交换空间
swapon /opt/temp/swap
4.修改/etc/fstab,使新加的4G交换空间在系统重新启动后自动生效.
echo “/opt/temp/swap swap swap defaults 0 0” >>/etc/fstab
5.看看swap大小free -h
6.不用重启也可以,直接重新git push发现问题解决.
合作联系邮箱:cofface#cofface.com(请将#替换为@)

转载请注明来源:Cofface Blog » [cofface]git push提示remote: fatal: Out of memory, malloc failed

赞 (16) 打赏

感谢您的支持,我会继续努力的!

支付宝扫一扫打赏