使用git下载远程所有分支到本地
主要逻辑是:
- clone代码
- 查询所有远程分支
- fecth 所有分支
- pull 分支
git clone git地址
cd git文件夹
git branch -r | grep -v '\->' | while read remote; do git branch --track "${remote#origin/}" "$remote"; done
git fetch --all
git pull --all
使用git下载远程所有分支到本地
主要逻辑是:
git clone git地址
cd git文件夹
git branch -r | grep -v '\->' | while read remote; do git branch --track "${remote#origin/}" "$remote"; done
git fetch --all
git pull --all