git push remote: fatal: Out of memory, malloc failed

remote: fatal: Out of memory, malloc failed (tried to allocate 35445354276 bytes      )
error: 远程解包失败:unpack-objects abnormal exit

解决办法:

mkdir -p /home/temp

dd if=/dev/zero of=/home/temp/swap bs=1024 count=4096000

目录路径和大小自己看着办就好了)

2.创建交换空间

mkswap /home/temp/swap

3.启动新增加的4G交换空间

swapon /home/temp/swap

4.看看swap大小free -h

5.不用重启也可以,直接重新git push发现问题解决.

你可能感兴趣的:(git,p2p,gnu)