git 克隆指定分支代码_wudinaniya的博客-CSDN博客

来源: git 克隆指定分支代码_wudinaniya的博客-CSDN博客

git拉取代码最常用的方式为:

git clone http://gitslab.yiqing.com/declare/about.git

这种方式没有指定分支,当代码有多个分支时,拉取的分支不一定就是master。比如,下面这个其实拉下来的就不是master分支代码:

  1. [root@izbp1845cet96se1qmb5ekz home]# git clone http://gitslab.yiqing.com/declare/about.git
  2. Cloning into ‘about’
  3. Username for ‘http://gitslab.yiqing.com’: account
  4. Password for ‘http://account@gitslab.yiqing.com’:
  5. remote: Counting objects: 116, done.
  6. remote: Compressing objects: 100% (86/86), done.
  7. remote: Total 116 (delta 45), reused 80 (delta 28)
  8. Receiving objects: 100% (116/116), 313.49 KiB | 508.00 KiB/s, done.
  9. Resolving deltas: 100% (45/45), done.
  10. [root@izbp1845cet96se1qmb5ekz home]# ls
  11. about
  12. [root@izbp1845cet96se1qmb5ekz home]# cd about/
  13. [root@izbp1845cet96se1qmb5ekz about]# git branch
  14. * develop

 

使用git拉代码时可以使用 -b 指定分支

指定拉 master 分支代码

git clone -b master http://gitslab.yiqing.com/declare/about.git

指定拉 develop 分支代码

git clone -b develop http://gitslab.yiqing.com/declare/about.git

 

查看当前项目拉的是哪个分支的代码:

进入项目根目录, 然后执行 git branch 命令

git branch

如图所示:

 

查看当前项目拉的是哪个分支的代码详情:

进入项目根目录, 然后执行 git branch -vv 命令

git branch -vv

如图:

查看分支上的递交情况:

进入项目根目录,执行 git show-branch

git show-branch

如图:

赞(0) 打赏
分享到: 更多 (0)

觉得文章有用就打赏一下文章作者

支付宝扫一扫打赏

微信扫一扫打赏