码迷,mamicode.com
首页 > 其他好文 > 详细

git命令-切换分支

时间:2020-04-11 10:15:47      阅读:467      评论:0      收藏:0      [点我收藏+]

标签:check   目录   you   branch   wro   origin   git   pretty   div   

1. 查看远程分支

$ git branch -a 
我在mxnet根目录下运行以上命令:

~/mxnet$ git branch -a
* master
  remotes/origin/HEAD -> origin/master
  remotes/origin/master
  remotes/origin/nnvm
  remotes/origin/piiswrong-patch-1
  remotes/origin/v0.9rc1

可以看到,我们现在在master分支下

2. 查看本地分支

~/mxnet$ git branch
* master

3. 切换分支

$ git checkout -b v0.9rc1 origin/v0.9rc1
Branch v0.9rc1 set up to track remote branch v0.9rc1 from origin.
Switched to a new branch ‘v0.9rc1‘

#已经切换到v0.9rc1分支了
$ git branch
  master
* v0.9rc1

#切换回master分支
$ git checkout master
Switched to branch ‘master‘
Your branch is up-to-date with ‘origin/master‘.

git命令-切换分支

标签:check   目录   you   branch   wro   origin   git   pretty   div   

原文地址:https://www.cnblogs.com/zhuyeshen/p/12677613.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!