git clone

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

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值