1 大仓库拉取

# 1. 浅克隆:即只克隆最后一条commit记录
git clone --depth=1 <repository_name>

# 2. 浅克隆:拉取并merge最后1000条commit记录
git pull --depth=1000

# 3. 从浅克隆恢复到完整克隆
git config remote.origin.fetch '+refs/heads/*:refs/remotes/origin/*'
git remote update
git pull --unshallow