git 推送出现 "fatal: The remote end hung up unexpectedly" 解决方案

在使用git推送项目时候出现 “fatal: The remote end hung up unexpectedly”
原因是推送的文件太大。
解决方案:
在克隆/创建版本库生成的 .git目录下面修改生成的config文件增加如下:

[http]
postBuffer = 524288000

具体完成的如下图所示:
git 推送出现 "fatal: The remote end hung up unexpectedly" 解决方案

git 推送出现 "fatal: The remote end hung up unexpectedly" 解决方案
重新推送即可。

参考地址: https://blog.****.net/zcmain/article/details/76855595