git push报错fatal: Out of memory,
2021-07-28 本文已影响0人
malgee
1、查看git 的配置 。猜想是“http.postbuffer”太大。
$ git config --list --show-origin
2、修改“http.postbuffer”
$ git config --global http.postbuffer 128m
3、重新尝试push。就可以了
原文链接:https://blog.csdn.net/u010598525/article/details/113933878