关于Git上传项目报错error: RPC failed; HTTP 413 curl 22 The requested URL returned error: 413
作者:互联网
问题
- 今天用Git上传项目时,最后一步push时命令行报错
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. 提交最大缓存问题
- 将缓存修改为500mb或者更大
git config --global http.postBuffer 524288000
//或者
git config --global http.postBuffer 1048576000
- 但是我试过之后发现没有什么用,并且我的项目本身也没有超过500mb,所以不是这个问题
2. 配置最低速度和最低速度时间
git config --global http.lowSpeedLimit 0
git config --global http.lowSpeedTime 999999 //单位 秒
- global是当前配置,如果需要全局配置用system
- 试过之后还是没有用,并且我的报错后面没有跟网速