当前位置:   article > 正文

git clone命令_git clone 参数

git clone 参数

git clone命令将存储库克隆到新目录中。

简介

  1. git clone [--template=<template_directory>]
  2. [-l] [-s] [--no-hardlinks] [-q] [-n] [--bare] [--mirror]
  3. [-o <name>] [-b <name>] [-u <upload-pack>] [--reference <repository>]
  4. [--dissociate] [--separate-git-dir <git dir>]
  5. [--depth <depth>] [--[no-]single-branch]
  6. [--recurse-submodules] [--[no-]shallow-submodules]
  7. [--jobs <n>] [--] <repository> [<directory>]

Shell

描述

将存储库克隆到新创建的目录中,为克隆的存储库中的每个分支创建远程跟踪分支(使用git branch -r可见),并从克隆检出的存储库作为当前活动分支的初始分支。

在克隆之后,没有参数的普通git提取将更新所有远程跟踪分支,并且没有参数的git pull将另外将远程主分支合并到当前主分支(如果有的话)。

此默认配置通过在refs/remotes/origin下创建对远程分支头的引用,并通过初始化remote.origin.urlremote.origin.fetch配置变量来实现。

执行远程操作的第一步,通常是从远程主机克隆一个版本库,这时就要用到git clone命令。

$ git clone <版本库的网址>

Shell

比如,克隆jQuery的版本库。

$ git clone http://github.com/jquery/jquery.git

Shell

该命令会在本地主机生成一个目录,与远程主机的版本库同名。如果要指定不同的目录名,可以将目录名作为git clone命令的第二个参数。

$ git clone <版本库的网址> <本地目录名>

Shell

git clone支持多种协议,除了HTTP(s)以外,还支持SSH、Git、本地文件协议等,下面是一些例子。

示例

以下是所支持协议的一些示例 -

  1. $ git clone http[s]://example.com/path/to/repo.git
  2. $ git clone http://git.oschina.net/yiibai/sample.git
  3. $ git clone ssh://example.com/path/to/repo.git
  4. $ git clone git://example.com/path/to/repo.git
  5. $ git clone /opt/git/project.git
  6. $ git clone file:///opt/git/project.git
  7. $ git clone ftp[s]://example.com/path/to/repo.git
  8. $ git clone rsync://example.com/path/to/repo.git

Shell

SSH协议还有另一种写法。

$ git clone [user@]example.com:path/to/repo.git

Shell

通常来说,Git协议下载速度最快,SSH协议用于需要用户认证的场合。

应用场景示例

从上游克隆下来:

  1. $ git clone git://git.kernel.org/pub/scm/.../linux.git mydir
  2. $ cd mydir
  3. $ make # 执行代码或其它命令

Shell

在当前目录中使用克隆,而无需检出:

  1. $ git clone -l -s -n . ../copy
  2. $ cd ../copy
  3. $ git show-branch

Shell

从现有本地目录借用从上游克隆:

  1. $ git clone --reference /git/linux.git
  2. git://git.kernel.org/pub/scm/.../linux.git
  3. mydir
  4. $ cd mydir

Shell

创建一个裸存储库以将您的更改发布给公众:

$ git clone --bare -l /home/proj/.git /pub/scm/proj.git

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/Li_阴宅/article/detail/883251
推荐阅读
相关标签
  

闽ICP备14008679号