1.git下载指定分支代码
git clone -b branchname https://github.com/xxx/xxx.git
2.看分支
git branch 列出本地已经存在的分支,并且当前分支会用*标记
git branch -r 查看远程版本库的分支列表
git branch -a 查看所有分支列表(包括本地和远程,remotes/开头的表示远程分支)
git branch -v 查看一个分支的最后一次提交
git branch --merged 查看哪些分支已经合并到当前分支
git branch --no-merged 查看所有未合并工作的分支
3.切换分支
切换现有分支:
git checkout branchName
新建并切换分支
git checkout -b newBranch
新建分支
git branch newBranch
获取/切换远程分支:
git fetch origin
git checkout branchname