使用git下载远程所有分支到本地
使用git下载远程所有分支到本地:
打开gitbash
输入以下命令即可:
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下载远程所有分支到本地:
打开gitbash
输入以下命令即可:
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