首页 > 其他分享 >git 错误

git 错误

时间:2023-09-16 18:46:00浏览次数:52  
标签:git http 错误 -- postBuffer 524288000 config

git代码太大了 导致下载失败:

fatal: early EOF
fatal: fetch-pack: invalid index-pack output

 

git clone --depth=1 要克隆的git地址 

 

git推送超过100M文件:

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

标签:git,http,错误,--,postBuffer,524288000,config
From: https://www.cnblogs.com/jyj666/p/17707094.html

相关文章