git push超过100MB大文件失败(remote: fatal: pack exceeds maximum allowed size)

push代码的时候,有时会出现如下问题
remote: fatal: pack exceeds maximum allowed size
error: failed to push some refs to ‘git.n.xiaomi.com:fuzheng1/nl2sql.git’
git push超过100MB大文件失败(remote: fatal: pack exceeds maximum allowed size)_第1张图片
解决方案:
将本地 http.postBuffer 数值调整到GitHub服务对应的单次上传大小配置

# 方法一:全局配置 git config --global http.postBuffer 524288000  
或者  
# 方法二:当前仓库配置 git config http.postBuffer 524288000

查看是否配置成功

# 查看当前的Git配置
git config --list

你可能感兴趣的:(git,git)