]> git.ipfire.org Git - thirdparty/git.git/blame - Documentation/git-gc.txt
Git 2.20.1
[thirdparty/git.git] / Documentation / git-gc.txt
CommitLineData
30f610b7
SP
1git-gc(1)
2=========
3
4NAME
5----
6git-gc - Cleanup unnecessary files and optimize the local repository
7
8
9SYNOPSIS
10--------
7791a1d9 11[verse]
ae4e89e5 12'git gc' [--aggressive] [--auto] [--quiet] [--prune=<date> | --no-prune] [--force] [--keep-largest-pack]
30f610b7
SP
13
14DESCRIPTION
15-----------
16Runs a number of housekeeping tasks within the current repository,
17such as compressing file revisions (to reduce disk space and increase
b586a96a
NTND
18performance), removing unreachable objects which may have been
19created from prior invocations of 'git add', packing refs, pruning
c7e8ce6d
ÆAB
20reflog, rerere metadata or stale working trees. May also update ancillary
21indexes such as the commit-graph.
30f610b7
SP
22
23Users are encouraged to run this task on a regular basis within
24each repository to maintain good disk space utilization and good
05f30452
NP
25operating performance.
26
0b444cdb 27Some git commands may automatically run 'git gc'; see the `--auto` flag
05f30452
NP
28below for details. If you know what you're doing and all you want is to
29disable this behavior permanently without further considerations, just do:
30
31----------------------
32$ git config --global gc.auto 0
33----------------------
30f610b7 34
e3ff4b24
JH
35OPTIONS
36-------
37
0d7566a5 38--aggressive::
0b444cdb 39 Usually 'git gc' runs very quickly while providing good disk
5049012f 40 space utilization and performance. This option will cause
0b444cdb 41 'git gc' to more aggressively optimize the repository at the expense
0d7566a5 42 of taking much more time. The effects of this optimization are
5049012f 43 persistent, so this option only needs to be used occasionally; every
0d7566a5 44 few hundred changesets or so.
e9831e83
JH
45
46--auto::
0b444cdb 47 With this option, 'git gc' checks whether any housekeeping is
d7e56dbc
JK
48 required; if not, it exits without performing any work.
49 Some git commands run `git gc --auto` after performing
b586a96a
NTND
50 operations that could create many loose objects. Housekeeping
51 is required if there are too many loose objects or too many
52 packs in the repository.
d7e56dbc 53+
b586a96a
NTND
54If the number of loose objects exceeds the value of the `gc.auto`
55configuration variable, then all loose objects are combined into a
56single pack using `git repack -d -l`. Setting the value of `gc.auto`
57to 0 disables automatic packing of loose objects.
d7e56dbc 58+
da0005b8 59If the number of packs exceeds the value of `gc.autoPackLimit`,
55dfe13d
NTND
60then existing packs (except those marked with a `.keep` file
61or over `gc.bigPackThreshold` limit)
d7e56dbc 62are consolidated into a single pack by using the `-A` option of
9806f5a7
NTND
63'git repack'.
64If the amount of memory is estimated not enough for `git repack` to
65run smoothly and `gc.bigPackThreshold` is not set, the largest
66pack will also be excluded (this is the equivalent of running `git gc`
67with `--keep-base-pack`).
68Setting `gc.autoPackLimit` to 0 disables automatic consolidation of
69packs.
b586a96a
NTND
70+
71If houskeeping is required due to many loose objects or packs, all
72other housekeeping tasks (e.g. rerere, working trees, reflog...) will
73be performed as well.
74
e3ff4b24 75
58e9d9d4
JS
76--prune=<date>::
77 Prune loose objects older than date (default is 2 weeks ago,
61929404 78 overridable by the config variable `gc.pruneExpire`).
f1350d0c
MM
79 --prune=all prunes loose objects regardless of their age and
80 increases the risk of corruption if another process is writing to
81 the repository concurrently; see "NOTES" below. --prune is on by
82 default.
58e9d9d4
JS
83
84--no-prune::
85 Do not prune any loose objects.
86
a0c14cbb
FL
87--quiet::
88 Suppress all progress reports.
89
64a99eb4
NTND
90--force::
91 Force `git gc` to run even if there may be another `git gc`
92 instance running on this repository.
93
ae4e89e5
NTND
94--keep-largest-pack::
95 All packs except the largest pack and those marked with a
55dfe13d
NTND
96 `.keep` files are consolidated into a single pack. When this
97 option is used, `gc.bigPackThreshold` is ignored.
ae4e89e5 98
76a8788c 99CONFIGURATION
30f610b7
SP
100-------------
101
ae9f6311 102The optional configuration variable `gc.reflogExpire` can be
30f610b7
SP
103set to indicate how long historical entries within each branch's
104reflog should remain available in this repository. The setting is
105expressed as a length of time, for example '90 days' or '3 months'.
106It defaults to '90 days'.
107
ae9f6311 108The optional configuration variable `gc.reflogExpireUnreachable`
30f610b7
SP
109can be set to indicate how long historical reflog entries which
110are not part of the current branch should remain available in
111this repository. These types of entries are generally created as
6cf378f0 112a result of using `git commit --amend` or `git rebase` and are the
23bfbb81 113commits prior to the amend or rebase occurring. Since these changes
30f610b7
SP
114are not part of the current project most users will want to expire
115them sooner. This option defaults to '30 days'.
116
eb523a8d 117The above two configuration variables can be given to a pattern. For
60109d0e 118example, this sets non-default expiry values only to remote-tracking
eb523a8d
JH
119branches:
120
121------------
122[gc "refs/remotes/*"]
123 reflogExpire = never
da0005b8 124 reflogExpireUnreachable = 3 days
eb523a8d
JH
125------------
126
ae9f6311 127The optional configuration variable `gc.rerereResolved` indicates
30f610b7
SP
128how long records of conflicted merge you resolved earlier are
129kept. This defaults to 60 days.
130
ae9f6311 131The optional configuration variable `gc.rerereUnresolved` indicates
30f610b7
SP
132how long records of conflicted merge you have not resolved are
133kept. This defaults to 15 days.
134
ae9f6311 135The optional configuration variable `gc.packRefs` determines if
4be0c352 136'git gc' runs 'git pack-refs'. This can be set to "notbare" to enable
fe2128a8
FLR
137it within all non-bare repos or it can be set to a boolean value.
138This defaults to true.
30f610b7 139
d5d5d7b6
DS
140The optional configuration variable `gc.commitGraph` determines if
141'git gc' should run 'git commit-graph write'. This can be set to a
142boolean value. This defaults to false.
143
ae9f6311 144The optional configuration variable `gc.aggressiveWindow` controls how
0d7566a5
TT
145much time is spent optimizing the delta compression of the objects in
146the repository when the --aggressive option is specified. The larger
147the value, the more time is spent optimizing the delta compression. See
bed21a8a 148the documentation for the --window option in linkgit:git-repack[1] for
c9486ae8 149more details. This defaults to 250.
125f8146 150
ae9f6311 151Similarly, the optional configuration variable `gc.aggressiveDepth`
7e823880 152controls --depth option in linkgit:git-repack[1]. This defaults to 50.
0d7566a5 153
ae9f6311 154The optional configuration variable `gc.pruneExpire` controls how old
25ee9731
JS
155the unreferenced loose objects have to be before they are pruned. The
156default is "2 weeks ago".
157
b586a96a
NTND
158Optional configuration variable `gc.worktreePruneExpire` controls how
159old a stale working tree should be before `git worktree prune` deletes
160it. Default is "3 months ago".
161
3ffb58be 162
76a8788c 163NOTES
3ffb58be
JK
164-----
165
f1350d0c
MM
166'git gc' tries very hard not to delete objects that are referenced
167anywhere in your repository. In
3ffb58be 168particular, it will keep not only objects referenced by your current set
60109d0e
MM
169of branches and tags, but also objects referenced by the index,
170remote-tracking branches, refs saved by 'git filter-branch' in
3ed0b11e 171refs/original/, or reflogs (which may reference commits in branches
3ffb58be 172that were later amended or rewound).
f1350d0c 173If you are expecting some objects to be deleted and they aren't, check
3ffb58be
JK
174all of those locations and decide whether it makes sense in your case to
175remove those references.
176
f1350d0c
MM
177On the other hand, when 'git gc' runs concurrently with another process,
178there is a risk of it deleting an object that the other process is using
179but hasn't created a reference to. This may just cause the other process
180to fail or may corrupt the repository if the other process later adds a
181reference to the deleted object. Git has two features that significantly
182mitigate this problem:
183
184. Any object with modification time newer than the `--prune` date is kept,
185 along with everything reachable from it.
186
187. Most operations that add an object to the database update the
188 modification time of the object if it is already present so that #1
189 applies.
190
191However, these features fall short of a complete solution, so users who
192run commands concurrently have to live with some risk of corruption (which
193seems to be low in practice) unless they turn off automatic garbage
194collection with 'git config gc.auto 0'.
195
66bd8ab8
CP
196HOOKS
197-----
198
199The 'git gc --auto' command will run the 'pre-auto-gc' hook. See
200linkgit:githooks[5] for more information.
201
202
56ae8df5 203SEE ALSO
30f610b7 204--------
5162e697
DM
205linkgit:git-prune[1]
206linkgit:git-reflog[1]
207linkgit:git-repack[1]
208linkgit:git-rerere[1]
30f610b7 209
30f610b7
SP
210GIT
211---
9e1f0a85 212Part of the linkgit:git[1] suite