fatal: the remote end hung up unexpectedly

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

解决方法:

在 .git/config 文件中加入:

[http]
postBuffer = 524288000

或者运行:

git config http.postBuffer 524288000
注:524288000 = 500M

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