拉取所有远程分支到本地
git branch -r | grep -v '\->' | while read remote; do git branch --track "${remote#origin/}" "$remote"; donegit fetch --allgit pull --all
posted on 2019-06-19 15:06 阅读( ...) 评论( ...)
本文共 258 字,大约阅读时间需要 1 分钟。
拉取所有远程分支到本地
git branch -r | grep -v '\->' | while read remote; do git branch --track "${remote#origin/}" "$remote"; donegit fetch --allgit pull --all
转载于:https://www.cnblogs.com/shuiyonglewodezzzzz/p/11051391.html