从Git里拉取远程的所有分支

从Git里拉取远程的所有分支

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

猜你喜欢

转载自www.cnblogs.com/JiangOil/p/10511647.html