]> git.ipfire.org Git - thirdparty/git.git/blame - Documentation/git-clone.txt
Merge branch 'hi/gpg-mintrustlevel'
[thirdparty/git.git] / Documentation / git-clone.txt
CommitLineData
215a7ad1
JH
1git-clone(1)
2============
6ec311da
JH
3
4NAME
5----
29cf5e12 6git-clone - Clone a repository into a new directory
6ec311da
JH
7
8
9SYNOPSIS
10--------
353ce815 11[verse]
b1889c36 12'git clone' [--template=<template_directory>]
bc699afc 13 [-l] [-s] [--no-hardlinks] [-q] [-n] [--bare] [--mirror]
db9bc00e 14 [-o <name>] [-b <name>] [-u <upload-pack>] [--reference <repository>]
fb1d6dab 15 [--dissociate] [--separate-git-dir <git dir>]
0dab2468 16 [--depth <depth>] [--[no-]single-branch] [--no-tags]
bc29b0b9 17 [--recurse-submodules[=<pathspec>]] [--[no-]shallow-submodules]
d89f09c8 18 [--[no-]remote-submodules] [--jobs <n>] [--sparse] [--] <repository>
4c691016 19 [<directory>]
6ec311da
JH
20
21DESCRIPTION
22-----------
4607166d 23
db9819a4
BF
24Clones a repository into a newly created directory, creates
25remote-tracking branches for each branch in the cloned repository
3711d1cd 26(visible using `git branch --remotes`), and creates and checks out an
33405be3
JN
27initial branch that is forked from the cloned repository's
28currently active branch.
4607166d 29
db9819a4
BF
30After the clone, a plain `git fetch` without arguments will update
31all the remote-tracking branches, and a `git pull` without
32arguments will in addition merge the remote master branch into the
31b808a0
RT
33current master branch, if any (this is untrue when "--single-branch"
34is given; see below).
4607166d 35
db9819a4 36This default configuration is achieved by creating references to
cc1b8d8b 37the remote branch heads under `refs/remotes/origin` and
db9819a4
BF
38by initializing `remote.origin.url` and `remote.origin.fetch`
39configuration variables.
6ec311da 40
f4bf2184 41
6ec311da
JH
42OPTIONS
43-------
44-l::
bfc8c84e 45--local::
6ec311da 46 When the repository to clone from is on a local machine,
2de9b711 47 this flag bypasses the normal "Git aware" transport
6ec311da
JH
48 mechanism and clones the repository by making a copy of
49 HEAD and everything under objects and refs directories.
3d5c418f 50 The files under `.git/objects/` directory are hardlinked
9197a10c
JK
51 to save space when possible.
52+
53If the repository is specified as a local path (e.g., `/path/to/repo`),
54this is the default, and --local is essentially a no-op. If the
55repository is specified as a URL, then this flag is ignored (and we
189260b1
JK
56never use the local optimizations). Specifying `--no-local` will
57override the default when `/path/to/repo` is given, using the regular
2de9b711 58Git transport instead.
3d5c418f
JH
59
60--no-hardlinks::
897e3e45
ALI
61 Force the cloning process from a repository on a local
62 filesystem to copy the files under the `.git/objects`
63 directory instead of using hardlinks. This may be desirable
64 if you are trying to make a back-up of your repository.
6ec311da 65
a2775c2a 66-s::
bfc8c84e 67--shared::
a2775c2a 68 When the repository to clone is on the local machine,
4607166d 69 instead of using hard links, automatically setup
550c66f3 70 `.git/objects/info/alternates` to share the objects
4607166d
JH
71 with the source repository. The resulting repository
72 starts out without any object of its own.
84668872
MV
73+
74*NOTE*: this is a possibly dangerous operation; do *not* use
75it unless you understand what it does. If you clone your
2498a1ad 76repository using this option and then delete branches (or use any
2de9b711 77other Git command that makes any existing commit unreferenced) in the
2498a1ad 78source repository, some objects may become unreferenced (or dangling).
2de9b711 79These objects may be removed by normal Git operations (such as `git commit`)
483bc4f0
JN
80which automatically call `git gc --auto`. (See linkgit:git-gc[1].)
81If these objects are removed and were referenced by the cloned repository,
82then the cloned repository will become corrupt.
13354f53 83+
3711d1cd
QN
84Note that running `git repack` without the `--local` option in a repository
85cloned with `--shared` will copy objects from the source repository into a pack
86in the cloned repository, removing the disk space savings of `clone --shared`.
87It is safe, however, to run `git gc`, which uses the `--local` option by
13354f53
JK
88default.
89+
3711d1cd 90If you want to break the dependency of a repository cloned with `--shared` on
13354f53
JK
91its source repository, you can simply run `git repack -a` to copy all
92objects from the source repository into a pack in the cloned repository.
a2775c2a 93
f7415b4d 94--reference[-if-able] <repository>::
40592376 95 If the reference repository is on the local machine,
550c66f3 96 automatically setup `.git/objects/info/alternates` to
23edecbc
SP
97 obtain objects from the reference repository. Using
98 an already existing repository as an alternate will
451e5931 99 require fewer objects to be copied from the repository
23edecbc 100 being cloned, reducing network and local storage costs.
f7415b4d
SB
101 When using the `--reference-if-able`, a non existing
102 directory is skipped with a warning instead of aborting
103 the clone.
2498a1ad 104+
fb1d6dab
JH
105*NOTE*: see the NOTE for the `--shared` option, and also the
106`--dissociate` option.
107
108--dissociate::
109 Borrow the objects from reference repositories specified
110 with the `--reference` options only to reduce network
0181681e
AR
111 transfer, and stop borrowing from them after a clone is made
112 by making necessary local copies of borrowed objects. This
113 option can also be used when cloning locally from a
114 repository that already borrows objects from another
115 repository--the new repository will borrow objects from the
116 same repository, and this option can be used to stop the
117 borrowing.
23edecbc 118
6ec311da 119-q::
bfc8c84e 120--quiet::
488c3163 121 Operate quietly. Progress is not reported to the standard
0d0bac67 122 error stream.
6ec311da 123
21188b1e 124-v::
bfc8c84e 125--verbose::
c54b74af
TRC
126 Run verbosely. Does not affect the reporting of progress status
127 to the standard error stream.
5a518ad4
TRC
128
129--progress::
488c3163 130 Progress status is reported on the standard error stream
3711d1cd 131 by default when it is attached to a terminal, unless `--quiet`
488c3163
TRC
132 is specified. This flag forces progress status even if the
133 standard error stream is not directed to a terminal.
21188b1e 134
6e983059
JT
135--server-option=<option>::
136 Transmit the given string to the server when communicating using
137 protocol version 2. The given string must not contain a NUL or LF
138 character. The server's handling of server options, including
139 unknown ones, is server-specific.
140 When multiple `--server-option=<option>` are given, they are all
141 sent to the other side in the order listed on the command line.
142
a2775c2a 143-n::
bfc8c84e 144--no-checkout::
a2775c2a
EB
145 No checkout of HEAD is performed after the clone is complete.
146
87e80c4b 147--bare::
48a8c26c 148 Make a 'bare' Git repository. That is, instead of
8a1a120c
JH
149 creating `<directory>` and placing the administrative
150 files in `<directory>/.git`, make the `<directory>`
3711d1cd 151 itself the `$GIT_DIR`. This obviously implies the `--no-checkout`
71821351
PB
152 because there is nowhere to check out the working tree.
153 Also the branch heads at the remote are copied directly
154 to corresponding local branch heads, without mapping
155 them to `refs/remotes/origin/`. When this option is
36566cc0
BF
156 used, neither remote-tracking branches nor the related
157 configuration variables are created.
8a1a120c 158
d89f09c8
DS
159--sparse::
160 Initialize the sparse-checkout file so the working
161 directory starts with only the files in the root
162 of the repository. The sparse-checkout file can be
163 modified to grow the working directory as needed.
164
bc699afc 165--mirror::
6db2103f
UKK
166 Set up a mirror of the source repository. This implies `--bare`.
167 Compared to `--bare`, `--mirror` not only maps local branches of the
168 source to local branches of the target, it maps all refs (including
29b9a66f 169 remote-tracking branches, notes etc.) and sets up a refspec configuration such
6db2103f
UKK
170 that all these refs are overwritten by a `git remote update` in the
171 target repository.
bc699afc 172
e6c310fd 173-o <name>::
bfc8c84e 174--origin <name>::
550c66f3
BG
175 Instead of using the remote name `origin` to keep track
176 of the upstream repository, use `<name>`.
e6c310fd 177
7a4ee28f 178-b <name>::
bfc8c84e 179--branch <name>::
7a4ee28f 180 Instead of pointing the newly created HEAD to the branch pointed
550c66f3 181 to by the cloned repository's HEAD, point to `<name>` branch
31b808a0
RT
182 instead. In a non-bare repository, this is the branch that will
183 be checked out.
184 `--branch` can also take tags and detaches the HEAD at that commit
185 in the resulting repository.
7a4ee28f 186
6ec311da 187-u <upload-pack>::
bfc8c84e 188--upload-pack <upload-pack>::
d3296e37
SH
189 When given, and the repository to clone from is accessed
190 via ssh, this specifies a non-default path for the command
6ec311da
JH
191 run on the other end.
192
a57c8bac
JH
193--template=<template_directory>::
194 Specify the directory from which templates will be used;
d8a8488d 195 (See the "TEMPLATE DIRECTORY" section of linkgit:git-init[1].)
a57c8bac 196
84054f79 197-c <key>=<value>::
bfc8c84e 198--config <key>=<value>::
84054f79
JK
199 Set a configuration variable in the newly-created repository;
200 this takes effect immediately after the repository is
201 initialized, but before the remote history is fetched or any
202 files checked out. The key is in the same format as expected by
203 linkgit:git-config[1] (e.g., `core.eol=true`). If multiple
204 values are given for the same key, each value will be written to
205 the config file. This makes it safe, for example, to add
206 additional fetch refspecs to the origin remote.
7eae4a3a
SG
207+
208Due to limitations of the current implementation, some configuration
209variables do not take effect until after the initial fetch and checkout.
210Configuration variables known to not take effect are:
211`remote.<name>.mirror` and `remote.<name>.tagOpt`. Use the
212corresponding `--mirror` and `--no-tags` options instead.
84054f79 213
f496454e 214--depth <depth>::
f4bf2184 215 Create a 'shallow' clone with a history truncated to the
fc142811 216 specified number of commits. Implies `--single-branch` unless
28a1b569 217 `--no-single-branch` is given to fetch the histories near the
18a74a09
JH
218 tips of all branches. If you want to clone submodules shallowly,
219 also pass `--shallow-submodules`.
f4bf2184 220
994c2aaf
NTND
221--shallow-since=<date>::
222 Create a shallow clone with a history after the specified time.
223
859e5df9
NTND
224--shallow-exclude=<revision>::
225 Create a shallow clone with a history, excluding commits
226 reachable from a specified remote branch or tag. This option
227 can be specified multiple times.
228
0460ed2c 229--[no-]single-branch::
3e6e0edd
NTND
230 Clone only the history leading to the tip of a single branch,
231 either specified by the `--branch` option or the primary
28a1b569 232 branch remote's `HEAD` points at.
31b808a0 233 Further fetches into the resulting repository will only update the
a6d3bde5 234 remote-tracking branch for the branch this option was used for the
31b808a0 235 initial cloning. If the HEAD at the remote did not point at any
a6d3bde5 236 branch when `--single-branch` clone was made, no remote-tracking
31b808a0 237 branch is created.
3e6e0edd 238
0dab2468
ÆAB
239--no-tags::
240 Don't clone any tags, and set
241 `remote.<remote>.tagOpt=--no-tags` in the config, ensuring
242 that future `git pull` and `git fetch` operations won't follow
243 any tags. Subsequent explicit tag fetches will still work,
244 (see linkgit:git-fetch[1]).
245+
246Can be used in conjunction with `--single-branch` to clone and
247maintain a branch with no references other than a single cloned
248branch. This is useful e.g. to maintain minimal clones of the default
249branch of some repository for search indexing.
250
bb62e0a9
BW
251--recurse-submodules[=<pathspec]::
252 After the clone is created, initialize and clone submodules
253 within based on the provided pathspec. If no pathspec is
254 provided, all submodules are initialized and cloned.
bc29b0b9
SB
255 This option can be given multiple times for pathspecs consisting
256 of multiple entries. The resulting clone has `submodule.active` set to
bb62e0a9 257 the provided pathspec, or "." (meaning all submodules) if no
bc29b0b9
SB
258 pathspec is provided.
259+
260Submodules are initialized and cloned using their default settings. This is
261equivalent to running
262`git submodule update --init --recursive <pathspec>` immediately after
263the clone is finished. This option is ignored if the cloned repository does
264not have a worktree/checkout (i.e. if any of `--no-checkout`/`-n`, `--bare`,
265or `--mirror` is given)
e7fed18a 266
d22eb044
SB
267--[no-]shallow-submodules::
268 All submodules which are cloned will be shallow with a depth of 1.
269
4c691016 270--[no-]remote-submodules::
fd5041e1 271 All submodules which are cloned will use the status of the submodule's
4c691016 272 remote-tracking branch to update the submodule, rather than the
fd5041e1 273 superproject's recorded SHA-1. Equivalent to passing `--remote` to
4c691016
BA
274 `git submodule update`.
275
b57fb80a
NTND
276--separate-git-dir=<git dir>::
277 Instead of placing the cloned repository where it is supposed
278 to be, place the cloned repository at the specified directory,
5fe8f49b 279 then make a filesystem-agnostic Git symbolic link to there.
2de9b711 280 The result is Git repository can be separated from working
b57fb80a
NTND
281 tree.
282
72290d6a
SB
283-j <n>::
284--jobs <n>::
285 The number of submodules fetched at the same time.
286 Defaults to the `submodule.fetchJobs` option.
b57fb80a 287
6ec311da 288<repository>::
37ba0561 289 The (possibly remote) repository to clone from. See the
73364e4f 290 <<URLS,GIT URLS>> section below for more information on specifying
37ba0561 291 repositories.
6ec311da
JH
292
293<directory>::
fb6a9f93 294 The name of a new directory to clone into. The "humanish"
0879aa28 295 part of the source repository is used if no directory is
550c66f3
BG
296 explicitly given (`repo` for `/path/to/repo.git` and `foo`
297 for `host.xz:foo/.git`). Cloning into an existing directory
ec00d6e0 298 is only allowed if the directory is empty.
4607166d 299
347989f4 300:git-clone: 1
37ba0561
AR
301include::urls.txt[]
302
76a8788c 303EXAMPLES
2b5f3ed3 304--------
1e2ccd3a 305
47638685 306* Clone from upstream:
1e2ccd3a
JH
307+
308------------
283efb01
TK
309$ git clone git://git.kernel.org/pub/scm/.../linux.git my-linux
310$ cd my-linux
1e2ccd3a
JH
311$ make
312------------
313
314
47638685 315* Make a local clone that borrows from the current directory, without checking things out:
1e2ccd3a
JH
316+
317------------
318$ git clone -l -s -n . ../copy
a6e3768f 319$ cd ../copy
1e2ccd3a
JH
320$ git show-branch
321------------
322
8a1a120c 323
47638685 324* Clone from upstream while borrowing from an existing local directory:
23edecbc
SP
325+
326------------
f22a6543
TK
327$ git clone --reference /git/linux.git \
328 git://git.kernel.org/pub/scm/.../linux.git \
329 my-linux
330$ cd my-linux
23edecbc
SP
331------------
332
333
47638685 334* Create a bare repository to publish your changes to the public:
8a1a120c
JH
335+
336------------
87e80c4b 337$ git clone --bare -l /home/proj/.git /pub/scm/proj.git
8a1a120c
JH
338------------
339
340
6ec311da
JH
341GIT
342---
9e1f0a85 343Part of the linkgit:git[1] suite