git clone的时候遭遇fatal: early EOF fatal: index-pack failed解决办法
使用depth这个指令来下载最近一次提交
git clone --depth 1 url
然后修改config的remote "origin"下的fetch
修改前
fetch = +refs/heads/develop:refs/remotes/origin/develop
修改后
fetch = +refs/heads/*:refs/remotes/origin/*
执行pull
git pull --all
然后获取完整库
git fetch --unshallow
最后切换想要的分支