其他分享
首页 > 其他分享> > 关于Git上传项目报错error: RPC failed; HTTP 413 curl 22 The requested URL returned error: 413

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

作者:互联网

问题

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. 网络问题