使用git push 提交代码时出现以下错误提示:
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;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 的解决
本文链接:https://www.haomeiwen.com/subject/shxehttx.html
网友评论