Git日常操作 拉取所有远程分支到本地 git branch -r | grep -v '\->' | while read remote; do git branch --track "${remote#origin/}" "$remote"; done git fetch --all git pull --all posted on 2019-06-19 15:06 好吧,就是菜菜 阅读( ...) 评论( ...) 编辑 收藏 转载于:https://www.cnblogs.com/shuiyonglewodezzzzz/p/11051391.html