git拉取远程所有分支

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

猜你喜欢

转载自blog.csdn.net/weixin_49662044/article/details/129187109