背景
使用git push命令上传代码到仓库时,因为项目中有10M的模型文件,最后出现如下错误:
unable to rewind rpc post data - try increasing http.postBuffer
根据错误信息应该是单文件太大了,缓冲区大小不够,应该增加缓冲区
因此修改git的配置http.postBuffer缓冲区的大小,配置命令:
git config --global http.postBuffer 20480000
配置后再上传就可以了
使用git push命令上传代码到仓库时,因为项目中有10M的模型文件,最后出现如下错误:
unable to rewind rpc post data - try increasing http.postBuffer
根据错误信息应该是单文件太大了,缓冲区大小不够,应该增加缓冲区
因此修改git的配置http.postBuffer缓冲区的大小,配置命令:
git config --global http.postBuffer 20480000
配置后再上传就可以了