67

症状:

Git突然拒绝推送一个存储库(在我的例子中是github):

$ git push
Counting objects: 9292, done.
Delta compression using up to 8 threads.
Compressing objects: 100% (2136/2136), done.
error: RPC failed; result=22, HTTP code = 411
fatal: The remote end hung up unexpectedly
Writing objects: 100% (8222/8222), 1.27 MiB | 837 KiB/s, done.
Total 8222 (delta 6060), reused 8181 (delta 6033)
fatal: The remote end hung up unexpectedly
Everything up-to-date
4

1 回答 1

153

这是有帮助的,以下命令将 git 缓冲区增加到 500mb:

git config http.postBuffer 524288000
于 2013-05-15T04:47:41.163 回答