git branch
列出可用本地的分支。
检出远程的Git分支
现在用命令git branch -a
列出本地和远程的Git仓库中所有可用的分支。 该运行命令后
git fetch
,remote-tracking 更新您的远程分支 refs/remotes//。 现在检出新的分支到您的本地系统,使用
git checkout branch_name
。
$ git fetch $ git checkout staging
有多个远程?
如果您使用了多个远程,你必须与远程分支名类似下面的命令指定远程名 句法:$ git checkout -b local_branch_name remote_name/remote_branch_name命令:
$ git checkout -b staging origin/staging以上完成命令再运行“git branch”命令后,查看当地的分支和当前活动分支。
$ git branch master * staging