]> git.ipfire.org Git - thirdparty/git.git/blob - Documentation/git-clone.txt
Merge branch 'tb/ci-run-cocci-with-18.04' into maint
[thirdparty/git.git] / Documentation / git-clone.txt
1 git-clone(1)
2 ============
3
4 NAME
5 ----
6 git-clone - Clone a repository into a new directory
7
8
9 SYNOPSIS
10 --------
11 [verse]
12 'git clone' [--template=<template_directory>]
13 [-l] [-s] [--no-hardlinks] [-q] [-n] [--bare] [--mirror]
14 [-o <name>] [-b <name>] [-u <upload-pack>] [--reference <repository>]
15 [--dissociate] [--separate-git-dir <git dir>]
16 [--depth <depth>] [--[no-]single-branch] [--no-tags]
17 [--recurse-submodules[=<pathspec>]] [--[no-]shallow-submodules]
18 [--[no-]remote-submodules] [--jobs <n>] [--sparse]
19 [--filter=<filter>] [--] <repository>
20 [<directory>]
21
22 DESCRIPTION
23 -----------
24
25 Clones a repository into a newly created directory, creates
26 remote-tracking branches for each branch in the cloned repository
27 (visible using `git branch --remotes`), and creates and checks out an
28 initial branch that is forked from the cloned repository's
29 currently active branch.
30
31 After the clone, a plain `git fetch` without arguments will update
32 all the remote-tracking branches, and a `git pull` without
33 arguments will in addition merge the remote master branch into the
34 current master branch, if any (this is untrue when "--single-branch"
35 is given; see below).
36
37 This default configuration is achieved by creating references to
38 the remote branch heads under `refs/remotes/origin` and
39 by initializing `remote.origin.url` and `remote.origin.fetch`
40 configuration variables.
41
42
43 OPTIONS
44 -------
45 -l::
46 --local::
47 When the repository to clone from is on a local machine,
48 this flag bypasses the normal "Git aware" transport
49 mechanism and clones the repository by making a copy of
50 HEAD and everything under objects and refs directories.
51 The files under `.git/objects/` directory are hardlinked
52 to save space when possible.
53 +
54 If the repository is specified as a local path (e.g., `/path/to/repo`),
55 this is the default, and --local is essentially a no-op. If the
56 repository is specified as a URL, then this flag is ignored (and we
57 never use the local optimizations). Specifying `--no-local` will
58 override the default when `/path/to/repo` is given, using the regular
59 Git transport instead.
60 +
61 *NOTE*: this operation can race with concurrent modification to the
62 source repository, similar to running `cp -r src dst` while modifying
63 `src`.
64
65 --no-hardlinks::
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.
70
71 -s::
72 --shared::
73 When the repository to clone is on the local machine,
74 instead of using hard links, automatically setup
75 `.git/objects/info/alternates` to share the objects
76 with the source repository. The resulting repository
77 starts out without any object of its own.
78 +
79 *NOTE*: this is a possibly dangerous operation; do *not* use
80 it unless you understand what it does. If you clone your
81 repository using this option and then delete branches (or use any
82 other Git command that makes any existing commit unreferenced) in the
83 source repository, some objects may become unreferenced (or dangling).
84 These objects may be removed by normal Git operations (such as `git commit`)
85 which automatically call `git maintenance run --auto`. (See
86 linkgit:git-maintenance[1].) If these objects are removed and were referenced
87 by the cloned repository, then the cloned repository will become corrupt.
88 +
89 Note that running `git repack` without the `--local` option in a repository
90 cloned with `--shared` will copy objects from the source repository into a pack
91 in the cloned repository, removing the disk space savings of `clone --shared`.
92 It is safe, however, to run `git gc`, which uses the `--local` option by
93 default.
94 +
95 If you want to break the dependency of a repository cloned with `--shared` on
96 its source repository, you can simply run `git repack -a` to copy all
97 objects from the source repository into a pack in the cloned repository.
98
99 --reference[-if-able] <repository>::
100 If the reference repository is on the local machine,
101 automatically setup `.git/objects/info/alternates` to
102 obtain objects from the reference repository. Using
103 an already existing repository as an alternate will
104 require fewer objects to be copied from the repository
105 being cloned, reducing network and local storage costs.
106 When using the `--reference-if-able`, a non existing
107 directory is skipped with a warning instead of aborting
108 the clone.
109 +
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
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.
123
124 -q::
125 --quiet::
126 Operate quietly. Progress is not reported to the standard
127 error stream.
128
129 -v::
130 --verbose::
131 Run verbosely. Does not affect the reporting of progress status
132 to the standard error stream.
133
134 --progress::
135 Progress status is reported on the standard error stream
136 by default when it is attached to a terminal, unless `--quiet`
137 is specified. This flag forces progress status even if the
138 standard error stream is not directed to a terminal.
139
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
148 -n::
149 --no-checkout::
150 No checkout of HEAD is performed after the clone is complete.
151
152 --bare::
153 Make a 'bare' Git repository. That is, instead of
154 creating `<directory>` and placing the administrative
155 files in `<directory>/.git`, make the `<directory>`
156 itself the `$GIT_DIR`. This obviously implies the `--no-checkout`
157 because there is nowhere to check out the working tree.
158 Also the branch heads at the remote are copied directly
159 to corresponding local branch heads, without mapping
160 them to `refs/remotes/origin/`. When this option is
161 used, neither remote-tracking branches nor the related
162 configuration variables are created.
163
164 --sparse::
165 Initialize the sparse-checkout file so the working
166 directory starts with only the files in the root
167 of the repository. The sparse-checkout file can be
168 modified to grow the working directory as needed.
169
170 --filter=<filter-spec>::
171 Use the partial clone feature and request that the server sends
172 a subset of reachable objects according to a given object filter.
173 When using `--filter`, the supplied `<filter-spec>` is used for
174 the partial clone filter. For example, `--filter=blob:none` will
175 filter out all blobs (file contents) until needed by Git. Also,
176 `--filter=blob:limit=<size>` will filter out all blobs of size
177 at least `<size>`. For more details on filter specifications, see
178 the `--filter` option in linkgit:git-rev-list[1].
179
180 --mirror::
181 Set up a mirror of the source repository. This implies `--bare`.
182 Compared to `--bare`, `--mirror` not only maps local branches of the
183 source to local branches of the target, it maps all refs (including
184 remote-tracking branches, notes etc.) and sets up a refspec configuration such
185 that all these refs are overwritten by a `git remote update` in the
186 target repository.
187
188 -o <name>::
189 --origin <name>::
190 Instead of using the remote name `origin` to keep track of the upstream
191 repository, use `<name>`. Overrides `clone.defaultRemoteName` from the
192 config.
193
194 -b <name>::
195 --branch <name>::
196 Instead of pointing the newly created HEAD to the branch pointed
197 to by the cloned repository's HEAD, point to `<name>` branch
198 instead. In a non-bare repository, this is the branch that will
199 be checked out.
200 `--branch` can also take tags and detaches the HEAD at that commit
201 in the resulting repository.
202
203 -u <upload-pack>::
204 --upload-pack <upload-pack>::
205 When given, and the repository to clone from is accessed
206 via ssh, this specifies a non-default path for the command
207 run on the other end.
208
209 --template=<template_directory>::
210 Specify the directory from which templates will be used;
211 (See the "TEMPLATE DIRECTORY" section of linkgit:git-init[1].)
212
213 -c <key>=<value>::
214 --config <key>=<value>::
215 Set a configuration variable in the newly-created repository;
216 this takes effect immediately after the repository is
217 initialized, but before the remote history is fetched or any
218 files checked out. The key is in the same format as expected by
219 linkgit:git-config[1] (e.g., `core.eol=true`). If multiple
220 values are given for the same key, each value will be written to
221 the config file. This makes it safe, for example, to add
222 additional fetch refspecs to the origin remote.
223 +
224 Due to limitations of the current implementation, some configuration
225 variables do not take effect until after the initial fetch and checkout.
226 Configuration variables known to not take effect are:
227 `remote.<name>.mirror` and `remote.<name>.tagOpt`. Use the
228 corresponding `--mirror` and `--no-tags` options instead.
229
230 --depth <depth>::
231 Create a 'shallow' clone with a history truncated to the
232 specified number of commits. Implies `--single-branch` unless
233 `--no-single-branch` is given to fetch the histories near the
234 tips of all branches. If you want to clone submodules shallowly,
235 also pass `--shallow-submodules`.
236
237 --shallow-since=<date>::
238 Create a shallow clone with a history after the specified time.
239
240 --shallow-exclude=<revision>::
241 Create a shallow clone with a history, excluding commits
242 reachable from a specified remote branch or tag. This option
243 can be specified multiple times.
244
245 --[no-]single-branch::
246 Clone only the history leading to the tip of a single branch,
247 either specified by the `--branch` option or the primary
248 branch remote's `HEAD` points at.
249 Further fetches into the resulting repository will only update the
250 remote-tracking branch for the branch this option was used for the
251 initial cloning. If the HEAD at the remote did not point at any
252 branch when `--single-branch` clone was made, no remote-tracking
253 branch is created.
254
255 --no-tags::
256 Don't clone any tags, and set
257 `remote.<remote>.tagOpt=--no-tags` in the config, ensuring
258 that future `git pull` and `git fetch` operations won't follow
259 any tags. Subsequent explicit tag fetches will still work,
260 (see linkgit:git-fetch[1]).
261 +
262 Can be used in conjunction with `--single-branch` to clone and
263 maintain a branch with no references other than a single cloned
264 branch. This is useful e.g. to maintain minimal clones of the default
265 branch of some repository for search indexing.
266
267 --recurse-submodules[=<pathspec>]::
268 After the clone is created, initialize and clone submodules
269 within based on the provided pathspec. If no pathspec is
270 provided, all submodules are initialized and cloned.
271 This option can be given multiple times for pathspecs consisting
272 of multiple entries. The resulting clone has `submodule.active` set to
273 the provided pathspec, or "." (meaning all submodules) if no
274 pathspec is provided.
275 +
276 Submodules are initialized and cloned using their default settings. This is
277 equivalent to running
278 `git submodule update --init --recursive <pathspec>` immediately after
279 the clone is finished. This option is ignored if the cloned repository does
280 not have a worktree/checkout (i.e. if any of `--no-checkout`/`-n`, `--bare`,
281 or `--mirror` is given)
282
283 --[no-]shallow-submodules::
284 All submodules which are cloned will be shallow with a depth of 1.
285
286 --[no-]remote-submodules::
287 All submodules which are cloned will use the status of the submodule's
288 remote-tracking branch to update the submodule, rather than the
289 superproject's recorded SHA-1. Equivalent to passing `--remote` to
290 `git submodule update`.
291
292 --separate-git-dir=<git dir>::
293 Instead of placing the cloned repository where it is supposed
294 to be, place the cloned repository at the specified directory,
295 then make a filesystem-agnostic Git symbolic link to there.
296 The result is Git repository can be separated from working
297 tree.
298
299 -j <n>::
300 --jobs <n>::
301 The number of submodules fetched at the same time.
302 Defaults to the `submodule.fetchJobs` option.
303
304 <repository>::
305 The (possibly remote) repository to clone from. See the
306 <<URLS,GIT URLS>> section below for more information on specifying
307 repositories.
308
309 <directory>::
310 The name of a new directory to clone into. The "humanish"
311 part of the source repository is used if no directory is
312 explicitly given (`repo` for `/path/to/repo.git` and `foo`
313 for `host.xz:foo/.git`). Cloning into an existing directory
314 is only allowed if the directory is empty.
315
316 :git-clone: 1
317 include::urls.txt[]
318
319 EXAMPLES
320 --------
321
322 * Clone from upstream:
323 +
324 ------------
325 $ git clone git://git.kernel.org/pub/scm/.../linux.git my-linux
326 $ cd my-linux
327 $ make
328 ------------
329
330
331 * Make a local clone that borrows from the current directory, without checking things out:
332 +
333 ------------
334 $ git clone -l -s -n . ../copy
335 $ cd ../copy
336 $ git show-branch
337 ------------
338
339
340 * Clone from upstream while borrowing from an existing local directory:
341 +
342 ------------
343 $ git clone --reference /git/linux.git \
344 git://git.kernel.org/pub/scm/.../linux.git \
345 my-linux
346 $ cd my-linux
347 ------------
348
349
350 * Create a bare repository to publish your changes to the public:
351 +
352 ------------
353 $ git clone --bare -l /home/proj/.git /pub/scm/proj.git
354 ------------
355
356
357 GIT
358 ---
359 Part of the linkgit:git[1] suite