拉取远程仓库所有的分支到本地
for i in $(git branch -r); do $(git checkout $i && git pull --all); done
参考:
https://www.zhihu.com/question/54419234/answer/2791111374
拉取远程仓库所有的分支到本地
for i in $(git branch -r); do $(git checkout $i && git pull --all); done
参考:
https://www.zhihu.com/question/54419234/answer/2791111374