git 查看所有远程分支以及同步

306 阅读1分钟
git branch -r | grep -v '\->' | while read remote; do git branch --track "${remote#origin/}" "$remote"done


git fetch --all

git pull --all