今天换了公司的电脑,window11,刚开始克隆项目,结果出现了问题:
error: 3509 bytes of body are still expected
fetch-pack: unexpected disconnect while reading sideband packet
fatal: early EOF
后来找了问题所在,原因:远程仓库的文件过大,需要设置本地仓库大小
二、解决步骤:
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
文章来源:https://www.toymoban.com/news/detail-501980.html
3、如果还是git代码还是下载失败,则需要继续修改git缓存的大小文章来源地址https://www.toymoban.com/news/detail-501980.html
到了这里,关于error: 3509 bytes of body are still expectedfetch-pack: unexpected disconnect while reading sideban的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!