]> git.ipfire.org Git - thirdparty/git.git/blame - Documentation/fetch-options.txt
Reuse fixup_pack_header_footer in index-pack
[thirdparty/git.git] / Documentation / fetch-options.txt
CommitLineData
42905294
AR
1-q, \--quiet::
2 Pass --quiet to git-fetch-pack and silence any other internally
3 used programs.
4
5-v, \--verbose::
6 Be verbose.
7
93d69d86
JL
8-a, \--append::
9 Append ref names and object names of fetched refs to the
10 existing contents of `.git/FETCH_HEAD`. Without this
11 option old data in `.git/FETCH_HEAD` will be overwritten.
12
2796a9de 13\--upload-pack <upload-pack>::
42905294
AR
14 When given, and the repository to fetch from is handled
15 by 'git-fetch-pack', '--exec=<upload-pack>' is passed to
16 the command to specify non-default path for the command
17 run on the other end.
2c620a1a 18
93d69d86 19-f, \--force::
a3e3dc46
JH
20 When `git-fetch` is used with `<rbranch>:<lbranch>`
21 refspec, it refuses to update the local branch
22 `<lbranch>` unless the remote branch `<rbranch>` it
23 fetches is a descendant of `<lbranch>`. This option
24 overrides that check.
93d69d86 25
42905294 26-n, \--no-tags::
03febf99
JH
27 By default, `git-fetch` fetches tags that point at
28 objects that are downloaded from the remote repository
29 and stores them locally. This option disables this
30 automatic tag following.
31
93d69d86 32-t, \--tags::
03febf99
JH
33 Most of the tags are fetched automatically as branch
34 heads are downloaded, but tags that do not point at
35 objects reachable from the branch heads that are being
36 tracked will not be fetched by this mechanism. This
37 flag lets all tags and their associated objects be
38 downloaded.
93d69d86 39
0f76f526
TP
40-k, \--keep::
41 Keep downloaded pack.
42
93d69d86
JL
43-u, \--update-head-ok::
44 By default `git-fetch` refuses to update the head which
45 corresponds to the current branch. This flag disables the
a597fb0e
JH
46 check. This is purely for the internal use for `git-pull`
47 to communicate with `git-fetch`, and unless you are
48 implementing your own Porcelain you are not supposed to
49 use it.
03febf99 50
f4bf2184
JH
51\--depth=<depth>::
52 Deepen the history of a 'shallow' repository created by
53 `git clone` with `--depth=<depth>` option (see gitlink:git-clone[1])
54 by the specified number of commits.
55