clone 某个分支

#-b:branch(分支)
#branch_name:分支名称

#git_address:克隆的地址
git clone -b branch_name git_address
#例子
git clone -b hexo git@github.com:mrdong916/mrdong916.github.io.git

clone 所有分支

#git_address:克隆的地址
git clone git_address
#例子
git clone git@github.com:mrdong916/mrdong916.github.io.git
#查看所有分支
git branch -r
#显示内容
$ git branch -r
  origin/HEAD -> origin/master
  origin/hexo
  origin/master
#切换分支
#branch_name:克隆的分支名称
git checkout branch_name
#例子
git checkout hexo #切换到hexo分支
最后修改:2019 年 03 月 18 日
如果觉得我的文章对你有用,请随意赞赏