1、拉取最后一次提交后状态的代码git clone --depth=1 http://xxx.git
2、执行后续操作
# 拉取完整当前分支 git fetch --unshallow # 追踪所有远程分支 git remote set-branches origin '*' # 拉取所有远程分支 git fetch -v
原因:1、网络不稳定2、待定