https://zhuanlan.zhihu.com/p/597688197
1.先拉去最近一层代码
git clone --depth=1 http://xxx.git
2.拉取完整当前分支
git fetch --unshallow
3.追踪所有远程分支
git remote set-branches origin ‘*’
4.拉取所有远程分支
git fetch -v
https://zhuanlan.zhihu.com/p/597688197
git clone --depth=1 http://xxx.git
git fetch --unshallow
git remote set-branches origin ‘*’
git fetch -v