git push时出现 error:RPC failed 的解决办法

使用git push 提交代码时出现以下错误提示:

git push时出现 error:RPC failed 的解决办法_第1张图片
error:RPC failed;result=22,httpcode=411

问题最可能的原因是git缓存容量过低,通过以下命令提高git的HTTP缓存即可:

//全局修改 扩容至2M
git config --global http.postBuffer 2M 

// 仅修改当前工程 扩容至500M
git config http.postBuffer 524288000

你可能感兴趣的:(git push时出现 error:RPC failed 的解决办法)