文章目录
一、克隆 master 分支 git clone
二、查看远程分支 git branch -a
三、克隆远程分支 git checkout -b
一、克隆 master 分支 git clone
执行
git clone https://codechina.csdn.net/han12020121/git-learning-course
命令 , 只能克隆 master 分支 ;
此时如果执行 git branch 命令 , 查看本地版本库中的分支 , 只有 master 分支 ;
执行过程 :
D:\Git>git clone https://codechina.csdn.net/han12020121/git-learning-course Cloning into 'git-learning-course'... warning: redirecting to https://codechina.csdn.net/han12020121/git-learning-course.git/ remote: Enumerating objects: 51, done. remote: Counting objects: 100% (51/51), done. remote: Compressing objects: 100% (25/25), done. remote: Total 51 (delta 9), reused 48 (delta 9), pack-reused 0 Receiving objects: 100% (51/51), 4.79 KiB | 2.39 MiB/s, done. Resolving deltas: 100% (9/9), done.
二、查看远程分支 git branch -a
执行
git branch -a
命令 , 可以查看远程的所有分支 ;
执行过程 :
D:\Git\git-learning-course>git branch -a * master remotes/origin/6- remotes/origin/HEAD -> origin/master remotes/origin/feature1 remotes/origin/master D:\Git\git-learning-course>
三、克隆远程分支 git checkout -b
执行
git checkout -b feature1 origin/feature1
命令 , 克隆 remotes/origin/feature1 远程分支 , 上述命令的作用是 克隆远程的 origin/feature1 分支 为 本地的 feature1 分支 , 克隆完毕后 , 切换到 feature1 分支 ;
执行过程 :
D:\Git\git-learning-course>git checkout -b feature1 origin/feature1 Switched to a new branch 'feature1' Branch 'feature1' set up to track remote branch 'feature1' from 'origin'.
此时执行 git branch 命令 , 查看当前分支 :
D:\Git\git-learning-course>git branch * feature1 master