fetch-pack: unexpected disconnect while reading sideband packet

出现的报错
git clone时报错

  • 一般是因为项目分支过多,导致你要下载的东西太多,从而引起这个问题;
  • 引起这个问题的根源是文件过多,所以我们可以分批次下载文件,先下载一部分,再下载剩下的。

关闭 core.compression

git config --global core.compression 0

使用depth下载最近一次提交
注:- -depth 后的是 数字 1;url是项目ssh地址

git clone --depth 1 url

获取完整库

git fetch --unshallow

你可能感兴趣的:(git)