报错信息:
原因:
clone的一些文件过大
方法一:只下载最新一次提交的文件,不是整个历史版本
git clone https://...git --depth 1
https://...git : 克隆的git文件地址
若还报错,试方法二
方法二:
将postBuffer的大小改为500M(500*1014*1024 bit)
git config --global http.postBuffer 524288000
改完后可查看现有git私有配置列表确定是否成功
git config --list
会多一行上面的配置信息:http.postbuffer=524288000,说明配置成功
再重新克隆
git clone https://...git --depth 1
或者直接克隆所有内容