git push 的時候報錯以下:緩存
將分支推送到遠程存儲庫時遇到錯誤:Git failed with a fatal error,
the romote end hung up unexpectedly
RPC failed;HTTP 411 curl 22 The requested URL returned error :411bash
查找錯誤緣由:
執行以下命令,打開git 幫助頁面:curl
$ git config --help
搜http.postBuffer,
post
緣由:緩存值過小,遠程便捷HTTP傳輸請求數據時最大的緩存字節數,默認時1M字節.url
執行以下命令:將傳輸緩存設爲500Mcode
$ git config http.postBuffer 524288000
進入本地項目下的.git文件夾,編輯config文件,將postBuffer設爲 524288000;
blog