赞
踩
使用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
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。