lilunze / lilunze.github.io

blog
1 stars 0 forks source link

git push 报错 "The remote end hung up unexpectedly" #20

Open lilunze opened 6 years ago

lilunze commented 6 years ago

出现以上错误可能原因是推送的文件过大,可以尝试修改提交缓存解决:

git config http.postBuffer 524288000
或者
vi .git/config 添加下面配置:
[http]  
postBuffer = 524288000

重新推送...