git-clone - Clone a repository into a new directory
git clone <远程仓库地址>
1.git clone <远程仓库地址>
默认将所有的分支都下载下来
但是使用git branch
只能看到master
分支
$ git branch
* master
使用git branch -a
可以看到所有分支
$ git branch -a
* master
remotes/origin/HEAD -> origin/master
remotes/origin/dev
remotes/origin/master
所以可以使用git checkout dev
来切换到其他分支
$ git checkout dev
$ git branch
* dev
master
2.clone指定分支名,只下载指定分支。
git clone -b <指定分支名> <远程仓库地址>
git clone [--template=<template_directory>]
[-l] [-s] [--no-hardlinks] [-q] [-n] [--bare] [--mirror]
[-o <name>] [-b <name>] [-u <upload-pack>] [--reference <repository>]
[--dissociate] [--separate-git-dir <git dir>]
[--depth <depth>] [--[no-]single-branch] [--no-tags]
[--recurse-submodules[=<pathspec>]] [--[no-]shallow-submodules]
[--[no-]remote-submodules] [--jobs <n>] [--sparse]
[--filter=<filter>] [--] <repository>
[<directory>]
参考:
https://blog.csdn.net/u010059669/article/details/82670140
https://git-scm.com/docs/git-clone