push代码的时候,有时会出现如下问题
remote: fatal: pack exceeds maximum allowed size
error: failed to push some refs to 'git.n.xiaomi.com:fuzheng1/nl2sql.git'
解决方案:
将本地 http.postBuffer 数值调整到GitHub服务对应的单次上传大小配置
bash
# 方法一:全局配置 git config --global http.postBuffer 524288000
或者
# 方法二:当前仓库配置 git config http.postBuffer 524288000
查看是否配置成功
bash
# 查看当前的Git配置
git config --list