error: 3509 bytes of body are still expectedfetch-pack: unexpected disconnect while reading sideban

今天换了公司的电脑,window11,刚开始克隆项目,结果出现了问题:

error: 3509 bytes of body are still expected
fetch-pack: unexpected disconnect while reading sideband packet
fatal: early EOF

error: 3509 bytes of body are still expectedfetch-pack: unexpected disconnect while reading sideban_第1张图片

 

后来找了问题所在,原因:远程仓库的文件过大,需要设置本地仓库大小

二、解决步骤:

1、首先输入如下命令:
git config http.sslVerify "false"

若出现下列错误:
git config http.sslVerify "false" fatal: not in a git directory
再继续执行 git config --globle http.sslVerify "false" 问题解决

2、文件大小的上限设置:
git config --global http.postBuffer 524288000

3、如果还是git代码还是下载失败,则需要继续修改git缓存的大小

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