赞
踩
拉取项目远程分支的所有分支
一、git clone xxx
使用git branch只能看到拉去的master分支
使用 git branch -a 可查看所有
二、拉取所有
git branch -r | grep -v '\->' | while read remote; do git branch --track "${remote#origin/}" "$remote"; done
三、此时本地使用git branch即可查看所有远程端分支
另外:git 命令行同步远程已删除的分支
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。