查看远程分支和本地分支
git branch -va
当我想从远程仓库里拉取一条本地不存在的分支时:
git checkout -b 本地分支名 origin/远程分支名
例如: 切换远程分支
git checkout -b release origin/release-9.4