小谢第31问:git拉取所有分支

git branch -r | grep -v '->' | while read remote; do git branch --track "${remote#origin/}" "$remote"; done
git fetch --all
git pull --all

  

原文地址:https://www.cnblogs.com/xieoxie3000question/p/13215402.html