问题
通过git拉取GitHub上的项目失败报错信息如下
fetch-pack: unexpected disconnect while reading sideband packet
fatal: early EOF
fatal: fetch-pack: invalid index-pack output
原因:因为拉取的项目过大导致失败
解决
1.利用镜像网站
将链接中的 github.com 替换为 github.com.cnpmjs.org
如果方法1报以下错误文章来源:https://www.toymoban.com/news/detail-584626.html
Could not resolve host: github.com.cnpmjs.org
在git控制台上输入下面这句,然后在正常去拉取,它会使你默认使用镜像文章来源地址https://www.toymoban.com/news/detail-584626.html
git config --global url."https://hub.fastgit.xyz/".insteadOf https://github.com/
2.拉取最近提交的一次提交,然后再拉取全部
git clone --depth 1 [链接]
git fetch --unshallow
3.延长克隆的时间
git config --global http.postBuffer 600000
到了这里,关于git拉取项目太大失败(超时)的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!