关于Git上传项目报错error: RPC failed; HTTP 413 curl 22 The requested URL returned error: 413

时间:2021-06-02 16:10:05   收藏:0   阅读:0

问题

error: RPC failed; HTTP 413 curl 22 The requested URL returned error: 413
fatal: the remote end hung up unexpectedly
fatal: the remote end hung up unexpectedly

解决

1. 提交最大缓存问题

git config --global http.postBuffer 524288000
//或者
git config --global http.postBuffer 1048576000

2. 配置最低速度和最低速度时间

git config --global http.lowSpeedLimit 0
git config --global http.lowSpeedTime 999999  //单位 秒

3. 网络问题

评论(0
© 2014 mamicode.com 版权所有 京ICP备13008772号-2  联系我们:gaon5@hotmail.com
迷上了代码!