从Git里拉取远程的所有分支
从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/JiangOil/
从Git里拉取远程的所有分支
git branch -r | grep -v '\->' | while read remote; do git branch --track "${remote#origin/}" "$remote"; done git fetch --all git pull --all