問題
git提交時(shí)報(bào)錯如下:error: RPC failed ...
fatal: The remote end hung up unexpectedly
解決方法
- 客戶端
增大本地客戶端可以上傳代碼的大小限制挽铁,輸入下面的命令即可解決
git config --global http.postBuffer 524288000
git config --global https.postBuffer 524288000
- 服務(wù)端
服務(wù)端的限制有兩個地方一個是gitlab本身,另外一個是gitlab使用的nginx嗦明。
gitlab本身也是很好解決的,使用管理員用戶登錄gitlab在設(shè)置Account and limit中加大Maximum attachment size (MB)和Maximum push size (MB)即可解決
nginx的話修改gitlab.rb這個文件中
nginx['enable'] = true
nginx['client_max_body_size'] = '1024m'
nginx['redirect_http_to_https'] = false
nginx['redirect_http_to_https_port'] = 80
之后重啟gitlab
gitlab gitlab-ctl reconfigure
gitlab gitlab-ctl restart
還有要注意的是最岗,我在gitlab前面還加了一個nginx用來做反向代理烙常,所以這個nginx的client_max_body_size也要加大