git branch
Posted 654321cc
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了git branch相关的知识,希望对你有一定的参考价值。
https://git-scm.com/docs/git-branch
git branch
命令的-r
选项,可以用来查看远程分支,-a
选项查看所有分支。
$ git branch -r origin/master $ git branch -a * master remotes/origin/master
上面命令表示,本地主机的当前分支是master
,远程分支是origin/master
。
以上是关于git branch的主要内容,如果未能解决你的问题,请参考以下文章