赞
踩
新clone一个工程后,若想一次性拉取所有分支数据,可采用下面指令:
git clone xxx git branch -r | grep -v '\->' | while read remote; do git branch --track "${remote#origin/}" "$remote"; done git fetch --all git pull --all