本文主要是介绍踩坑日记:Idea上传大文件到Git,报错:fatal: the remote end hung up unexpectedly,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
报错信息:
error: RPC failed; curl 56 Recv failure: Connection was aborted
fatal: the remote end hung up unexpectedly
Total 905 (delta 142), reused 0 (delta 0), pack-reused 0
fatal: the remote end hung up unexpectedly
原因:
在使用git更新或提交项目时候出现 "fatal: The remote end hung up unexpectedly
" 原因是推送的文件太大。
解决办法:
在idea下的Terminal
窗口下依次执行以下代码即可
git config --global http.proxy
git config --global --unset http.proxy
# 修改提交缓存大小为500M,或者更大的数字
git config --global http.postBuffer 524288000
git config --global http.postBuffer 1048576000
拓展
关于Idea在Terminal窗口集成git:
https://blog.csdn.net/ayunnuo/article/details/113626799
这篇关于踩坑日记:Idea上传大文件到Git,报错:fatal: the remote end hung up unexpectedly的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!