Git问题:fatal: the remote end hung up unexpectedly

发生在push命令中,有可能是push的文件过大导致


解决方法:
Windows:
在 .git/config 文件中加入
[http]
    postBuffer = 524288000

linux:
git config http.postBuffer 524288000

你可能感兴趣的:(Git问题:fatal: the remote end hung up unexpectedly)