Contents
  1. 1. 解决方法:
    1. 1.1. for windows
    2. 1.2. for linux

原创作品,允许转载。转载时请务必以超链接形式标明文章原始出处、作者信息和本声明,否则将追究法律责任。

fatal: the remote end hung up unexpectedly
发生在push命令中,有可能是push的文件过大导致。

解决方法:

for windows

.git/config文件中加入

1
2
[http]
postBuffer = 524288000


for linux

1
git config http.postBuffer 524288000
Contents
  1. 1. 解决方法:
    1. 1.1. for windows
    2. 1.2. for linux