Git push error: http 411的解決方案總結


1、事故現場

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

2、事故緣由

查找錯誤緣由:
執行以下命令,打開git 幫助頁面:curl

$ git config --help

搜http.postBuffer,
在這裏插入圖片描述post

緣由:緩存值過小,遠程便捷HTTP傳輸請求數據時最大的緩存字節數,默認時1M字節.url

3、解決方案

一、方法一:

執行以下命令:將傳輸緩存設爲500Mcode

$ git config http.postBuffer 524288000

二、方法二:

進入本地項目下的.git文件夾,編輯config文件,將postBuffer設爲 524288000;
在這裏插入圖片描述blog

相關文章
相關標籤/搜索