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