问题
克隆报错
remote: aborting due to possible repository corruption on the remote side.
解决办法
方法一:分步克隆
$ git clone https://xxxxxx.git --depth 1
然后下载所有历史
$ git fetch --unshallow
或者克隆剩余所有
$ git remote set-branches origin '*'
$ git fetch -v
或者克隆某一分支
$ git remote set-branches origin 'cnguu'
$ git fetch origin cnguu
$ git checkout cnguu
来源:https://cloud.tencent.com/developer/article/1728541
方法二:修改远程git配置
git config --global pack.windowMemory "100m"
git config --global pack.SizeLimit "100m"
git config --global pack.threads "1"
git config --global pack.window "0"
来源:https://blog.csdn.net/weixin_37639900/article/details/105272976