git clone拉取代码报错【fetch-pack: invalid index-pack output】

原因:拉取的项目体积过大导致报错,中断了

如下报错:fetch-pack: invalid index-pack output
在这里插入图片描述
解决方案:浅拉取最后一次提交的

git clone -b 分支名 --depth=1 仓库路径

猜你喜欢

转载自blog.csdn.net/qq_43382853/article/details/122381108