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

  1. 查看git的配置,应该是http.postbuffer太大
$ git config --list --show-origin
  1. 修改http.postbuffer
$ git config --global  http.postbuffer 128m
  1. 重新尝试push,成功

你可能感兴趣的:(前端学习,git)