Bootstrap

Git远程仓库过大导致clone失败的解决方法

浅层clone

首先clone一层:

1
$ git clone --depth=1 http://xxx.git

浅层clone成功后,再完整拉取:

1
2
3
$ git fetch --unshallow # 拉取完整当前分支
$ git remote set-branches origin '*' # 追踪所有远程分支
$ git fetch -v # 拉取所有远程分支

;