摘要
git push throws error: RPC failed; result=56, HTTP code = 200的解决办法
原因
默认 Git 设置 http post 的缓存为 1MB,将其设置为 500MB
解决
git config http.postBuffer 524288000
git config http.postBuffer 524288000
转载于:https://www.cnblogs.com/oiliu/p/5632390.html