Autogenerated manpages for v2.44.0-53-g0f9d4
[git-manpages.git] / man1 / git-gc.1
blob29b41b4bcfe3a8a60fe1fc82d29b082757ff077c
1 '\" t
2 .\"     Title: git-gc
3 .\"    Author: [FIXME: author] [see http://www.docbook.org/tdg5/en/html/author]
4 .\" Generator: DocBook XSL Stylesheets vsnapshot <http://docbook.sf.net/>
5 .\"      Date: 2024-02-27
6 .\"    Manual: Git Manual
7 .\"    Source: Git 2.44.0.53.g0f9d4d28b7
8 .\"  Language: English
9 .\"
10 .TH "GIT\-GC" "1" "2024\-02\-27" "Git 2\&.44\&.0\&.53\&.g0f9d4d2" "Git Manual"
11 .\" -----------------------------------------------------------------
12 .\" * Define some portability stuff
13 .\" -----------------------------------------------------------------
14 .\" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
15 .\" http://bugs.debian.org/507673
16 .\" http://lists.gnu.org/archive/html/groff/2009-02/msg00013.html
17 .\" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
18 .ie \n(.g .ds Aq \(aq
19 .el       .ds Aq '
20 .\" -----------------------------------------------------------------
21 .\" * set default formatting
22 .\" -----------------------------------------------------------------
23 .\" disable hyphenation
24 .nh
25 .\" disable justification (adjust text to left margin only)
26 .ad l
27 .\" -----------------------------------------------------------------
28 .\" * MAIN CONTENT STARTS HERE *
29 .\" -----------------------------------------------------------------
30 .SH "NAME"
31 git-gc \- Cleanup unnecessary files and optimize the local repository
32 .SH "SYNOPSIS"
33 .sp
34 .nf
35 \fIgit gc\fR [\-\-aggressive] [\-\-auto] [\-\-quiet] [\-\-prune=<date> | \-\-no\-prune] [\-\-force] [\-\-keep\-largest\-pack]
36 .fi
37 .sp
38 .SH "DESCRIPTION"
39 .sp
40 Runs a number of housekeeping tasks within the current repository, such as compressing file revisions (to reduce disk space and increase performance), removing unreachable objects which may have been created from prior invocations of \fIgit add\fR, packing refs, pruning reflog, rerere metadata or stale working trees\&. May also update ancillary indexes such as the commit\-graph\&.
41 .sp
42 When common porcelain operations that create objects are run, they will check whether the repository has grown substantially since the last maintenance, and if so run \fBgit gc\fR automatically\&. See \fBgc\&.auto\fR below for how to disable this behavior\&.
43 .sp
44 Running \fBgit gc\fR manually should only be needed when adding objects to a repository without regularly running such porcelain commands, to do a one\-off repository optimization, or e\&.g\&. to clean up a suboptimal mass\-import\&. See the "PACKFILE OPTIMIZATION" section in \fBgit-fast-import\fR(1) for more details on the import case\&.
45 .SH "OPTIONS"
46 .PP
47 \-\-aggressive
48 .RS 4
49 Usually
50 \fIgit gc\fR
51 runs very quickly while providing good disk space utilization and performance\&. This option will cause
52 \fIgit gc\fR
53 to more aggressively optimize the repository at the expense of taking much more time\&. The effects of this optimization are mostly persistent\&. See the "AGGRESSIVE" section below for details\&.
54 .RE
55 .PP
56 \-\-auto
57 .RS 4
58 With this option,
59 \fIgit gc\fR
60 checks whether any housekeeping is required; if not, it exits without performing any work\&.
61 .sp
62 See the
63 \fBgc\&.auto\fR
64 option in the "CONFIGURATION" section below for how this heuristic works\&.
65 .sp
66 Once housekeeping is triggered by exceeding the limits of configuration options such as
67 \fBgc\&.auto\fR
68 and
69 \fBgc\&.autoPackLimit\fR, all other housekeeping tasks (e\&.g\&. rerere, working trees, reflog\&...) will be performed as well\&.
70 .RE
71 .PP
72 \-\-[no\-]cruft
73 .RS 4
74 When expiring unreachable objects, pack them separately into a cruft pack instead of storing them as loose objects\&.
75 \fB\-\-cruft\fR
76 is on by default\&.
77 .RE
78 .PP
79 \-\-max\-cruft\-size=<n>
80 .RS 4
81 When packing unreachable objects into a cruft pack, limit the size of new cruft packs to be at most
82 \fB<n>\fR
83 bytes\&. Overrides any value specified via the
84 \fBgc\&.maxCruftSize\fR
85 configuration\&. See the
86 \fB\-\-max\-cruft\-size\fR
87 option of
88 \fBgit-repack\fR(1)
89 for more\&.
90 .RE
91 .PP
92 \-\-prune=<date>
93 .RS 4
94 Prune loose objects older than date (default is 2 weeks ago, overridable by the config variable
95 \fBgc\&.pruneExpire\fR)\&. \-\-prune=now prunes loose objects regardless of their age and increases the risk of corruption if another process is writing to the repository concurrently; see "NOTES" below\&. \-\-prune is on by default\&.
96 .RE
97 .PP
98 \-\-no\-prune
99 .RS 4
100 Do not prune any loose objects\&.
103 \-\-quiet
104 .RS 4
105 Suppress all progress reports\&.
108 \-\-force
109 .RS 4
110 Force
111 \fBgit gc\fR
112 to run even if there may be another
113 \fBgit gc\fR
114 instance running on this repository\&.
117 \-\-keep\-largest\-pack
118 .RS 4
119 All packs except the largest non\-cruft pack, any packs marked with a
120 \fB\&.keep\fR
121 file, and any cruft pack(s) are consolidated into a single pack\&. When this option is used,
122 \fBgc\&.bigPackThreshold\fR
123 is ignored\&.
125 .SH "AGGRESSIVE"
127 When the \fB\-\-aggressive\fR option is supplied, \fBgit-repack\fR(1) will be invoked with the \fB\-f\fR flag, which in turn will pass \fB\-\-no\-reuse\-delta\fR to \fBgit-pack-objects\fR(1)\&. This will throw away any existing deltas and re\-compute them, at the expense of spending much more time on the repacking\&.
129 The effects of this are mostly persistent, e\&.g\&. when packs and loose objects are coalesced into one another pack the existing deltas in that pack might get re\-used, but there are also various cases where we might pick a sub\-optimal delta from a newer pack instead\&.
131 Furthermore, supplying \fB\-\-aggressive\fR will tweak the \fB\-\-depth\fR and \fB\-\-window\fR options passed to \fBgit-repack\fR(1)\&. See the \fBgc\&.aggressiveDepth\fR and \fBgc\&.aggressiveWindow\fR settings below\&. By using a larger window size we\(cqre more likely to find more optimal deltas\&.
133 It\(cqs probably not worth it to use this option on a given repository without running tailored performance benchmarks on it\&. It takes a lot more time, and the resulting space/delta optimization may or may not be worth it\&. Not using this at all is the right trade\-off for most users and their repositories\&.
134 .SH "CONFIGURATION"
136 Everything below this line in this section is selectively included from the \fBgit-config\fR(1) documentation\&. The content is the same as what\(cqs found there:
138 gc\&.aggressiveDepth
139 .RS 4
140 The depth parameter used in the delta compression algorithm used by
141 \fIgit gc \-\-aggressive\fR\&. This defaults to 50, which is the default for the
142 \fB\-\-depth\fR
143 option when
144 \fB\-\-aggressive\fR
145 isn\(cqt in use\&.
147 See the documentation for the
148 \fB\-\-depth\fR
149 option in
150 \fBgit-repack\fR(1)
151 for more details\&.
154 gc\&.aggressiveWindow
155 .RS 4
156 The window size parameter used in the delta compression algorithm used by
157 \fIgit gc \-\-aggressive\fR\&. This defaults to 250, which is a much more aggressive window size than the default
158 \fB\-\-window\fR
159 of 10\&.
161 See the documentation for the
162 \fB\-\-window\fR
163 option in
164 \fBgit-repack\fR(1)
165 for more details\&.
168 gc\&.auto
169 .RS 4
170 When there are approximately more than this many loose objects in the repository,
171 \fBgit gc \-\-auto\fR
172 will pack them\&. Some Porcelain commands use this command to perform a light\-weight garbage collection from time to time\&. The default value is 6700\&.
174 Setting this to 0 disables not only automatic packing based on the number of loose objects, but also any other heuristic
175 \fBgit gc \-\-auto\fR
176 will otherwise use to determine if there\(cqs work to do, such as
177 \fBgc\&.autoPackLimit\fR\&.
180 gc\&.autoPackLimit
181 .RS 4
182 When there are more than this many packs that are not marked with
183 \fB*\&.keep\fR
184 file in the repository,
185 \fBgit gc \-\-auto\fR
186 consolidates them into one larger pack\&. The default value is 50\&. Setting this to 0 disables it\&. Setting
187 \fBgc\&.auto\fR
188 to 0 will also disable this\&.
190 See the
191 \fBgc\&.bigPackThreshold\fR
192 configuration variable below\&. When in use, it\(cqll affect how the auto pack limit works\&.
195 gc\&.autoDetach
196 .RS 4
197 Make
198 \fBgit gc \-\-auto\fR
199 return immediately and run in the background if the system supports it\&. Default is true\&.
202 gc\&.bigPackThreshold
203 .RS 4
204 If non\-zero, all non\-cruft packs larger than this limit are kept when
205 \fBgit gc\fR
206 is run\&. This is very similar to
207 \fB\-\-keep\-largest\-pack\fR
208 except that all non\-cruft packs that meet the threshold are kept, not just the largest pack\&. Defaults to zero\&. Common unit suffixes of
209 \fIk\fR,
210 \fIm\fR, or
211 \fIg\fR
212 are supported\&.
214 Note that if the number of kept packs is more than gc\&.autoPackLimit, this configuration variable is ignored, all packs except the base pack will be repacked\&. After this the number of packs should go below gc\&.autoPackLimit and gc\&.bigPackThreshold should be respected again\&.
216 If the amount of memory estimated for
217 \fBgit repack\fR
218 to run smoothly is not available and
219 \fBgc\&.bigPackThreshold\fR
220 is not set, the largest pack will also be excluded (this is the equivalent of running
221 \fBgit gc\fR
222 with
223 \fB\-\-keep\-largest\-pack\fR)\&.
226 gc\&.writeCommitGraph
227 .RS 4
228 If true, then gc will rewrite the commit\-graph file when
229 \fBgit-gc\fR(1)
230 is run\&. When using
231 \fBgit gc \-\-auto\fR
232 the commit\-graph will be updated if housekeeping is required\&. Default is true\&. See
233 \fBgit-commit-graph\fR(1)
234 for details\&.
237 gc\&.logExpiry
238 .RS 4
239 If the file gc\&.log exists, then
240 \fBgit gc \-\-auto\fR
241 will print its content and exit with status zero instead of running unless that file is more than
242 \fIgc\&.logExpiry\fR
243 old\&. Default is "1\&.day"\&. See
244 \fBgc\&.pruneExpire\fR
245 for more ways to specify its value\&.
248 gc\&.packRefs
249 .RS 4
250 Running
251 \fBgit pack\-refs\fR
252 in a repository renders it unclonable by Git versions prior to 1\&.5\&.1\&.2 over dumb transports such as HTTP\&. This variable determines whether
253 \fIgit gc\fR
254 runs
255 \fBgit pack\-refs\fR\&. This can be set to
256 \fBnotbare\fR
257 to enable it within all non\-bare repos or it can be set to a boolean value\&. The default is
258 \fBtrue\fR\&.
261 gc\&.cruftPacks
262 .RS 4
263 Store unreachable objects in a cruft pack (see
264 \fBgit-repack\fR(1)) instead of as loose objects\&. The default is
265 \fBtrue\fR\&.
268 gc\&.maxCruftSize
269 .RS 4
270 Limit the size of new cruft packs when repacking\&. When specified in addition to
271 \fB\-\-max\-cruft\-size\fR, the command line option takes priority\&. See the
272 \fB\-\-max\-cruft\-size\fR
273 option of
274 \fBgit-repack\fR(1)\&.
277 gc\&.pruneExpire
278 .RS 4
279 When
280 \fIgit gc\fR
281 is run, it will call
282 \fIprune \-\-expire 2\&.weeks\&.ago\fR
283 (and
284 \fIrepack \-\-cruft \-\-cruft\-expiration 2\&.weeks\&.ago\fR
285 if using cruft packs via
286 \fBgc\&.cruftPacks\fR
288 \fB\-\-cruft\fR)\&. Override the grace period with this config variable\&. The value "now" may be used to disable this grace period and always prune unreachable objects immediately, or "never" may be used to suppress pruning\&. This feature helps prevent corruption when
289 \fIgit gc\fR
290 runs concurrently with another process writing to the repository; see the "NOTES" section of
291 \fBgit-gc\fR(1)\&.
294 gc\&.worktreePruneExpire
295 .RS 4
296 When
297 \fIgit gc\fR
298 is run, it calls
299 \fIgit worktree prune \-\-expire 3\&.months\&.ago\fR\&. This config variable can be used to set a different grace period\&. The value "now" may be used to disable the grace period and prune
300 \fB$GIT_DIR/worktrees\fR
301 immediately, or "never" may be used to suppress pruning\&.
304 gc\&.reflogExpire, gc\&.<pattern>\&.reflogExpire
305 .RS 4
306 \fIgit reflog expire\fR
307 removes reflog entries older than this time; defaults to 90 days\&. The value "now" expires all entries immediately, and "never" suppresses expiration altogether\&. With "<pattern>" (e\&.g\&. "refs/stash") in the middle the setting applies only to the refs that match the <pattern>\&.
310 gc\&.reflogExpireUnreachable, gc\&.<pattern>\&.reflogExpireUnreachable
311 .RS 4
312 \fIgit reflog expire\fR
313 removes reflog entries older than this time and are not reachable from the current tip; defaults to 30 days\&. The value "now" expires all entries immediately, and "never" suppresses expiration altogether\&. With "<pattern>" (e\&.g\&. "refs/stash") in the middle, the setting applies only to the refs that match the <pattern>\&.
315 These types of entries are generally created as a result of using
316 \fBgit commit \-\-amend\fR
318 \fBgit rebase\fR
319 and are the commits prior to the amend or rebase occurring\&. Since these changes are not part of the current project most users will want to expire them sooner, which is why the default is more aggressive than
320 \fBgc\&.reflogExpire\fR\&.
323 gc\&.recentObjectsHook
324 .RS 4
325 When considering whether or not to remove an object (either when generating a cruft pack or storing unreachable objects as loose), use the shell to execute the specified command(s)\&. Interpret their output as object IDs which Git will consider as "recent", regardless of their age\&. By treating their mtimes as "now", any objects (and their descendants) mentioned in the output will be kept regardless of their true age\&.
327 Output must contain exactly one hex object ID per line, and nothing else\&. Objects which cannot be found in the repository are ignored\&. Multiple hooks are supported, but all must exit successfully, else the operation (either generating a cruft pack or unpacking unreachable objects) will be halted\&.
330 gc\&.repackFilter
331 .RS 4
332 When repacking, use the specified filter to move certain objects into a separate packfile\&. See the
333 \fB\-\-filter=<filter\-spec>\fR
334 option of
335 \fBgit-repack\fR(1)\&.
338 gc\&.repackFilterTo
339 .RS 4
340 When repacking and using a filter, see
341 \fBgc\&.repackFilter\fR, the specified location will be used to create the packfile containing the filtered out objects\&.
342 \fBWARNING:\fR
343 The specified location should be accessible, using for example the Git alternates mechanism, otherwise the repo could be considered corrupt by Git as it migh not be able to access the objects in that packfile\&. See the
344 \fB\-\-filter\-to=<dir>\fR
345 option of
346 \fBgit-repack\fR(1)
347 and the
348 \fBobjects/info/alternates\fR
349 section of
350 \fBgitrepository-layout\fR(5)\&.
353 gc\&.rerereResolved
354 .RS 4
355 Records of conflicted merge you resolved earlier are kept for this many days when
356 \fIgit rerere gc\fR
357 is run\&. You can also use more human\-readable "1\&.month\&.ago", etc\&. The default is 60 days\&. See
358 \fBgit-rerere\fR(1)\&.
361 gc\&.rerereUnresolved
362 .RS 4
363 Records of conflicted merge you have not resolved are kept for this many days when
364 \fIgit rerere gc\fR
365 is run\&. You can also use more human\-readable "1\&.month\&.ago", etc\&. The default is 15 days\&. See
366 \fBgit-rerere\fR(1)\&.
368 .SH "NOTES"
370 \fIgit gc\fR tries very hard not to delete objects that are referenced anywhere in your repository\&. In particular, it will keep not only objects referenced by your current set of branches and tags, but also objects referenced by the index, remote\-tracking branches, reflogs (which may reference commits in branches that were later amended or rewound), and anything else in the refs/* namespace\&. Note that a note (of the kind created by \fIgit notes\fR) attached to an object does not contribute in keeping the object alive\&. If you are expecting some objects to be deleted and they aren\(cqt, check all of those locations and decide whether it makes sense in your case to remove those references\&.
372 On the other hand, when \fIgit gc\fR runs concurrently with another process, there is a risk of it deleting an object that the other process is using but hasn\(cqt created a reference to\&. This may just cause the other process to fail or may corrupt the repository if the other process later adds a reference to the deleted object\&. Git has two features that significantly mitigate this problem:
374 .RS 4
375 .ie n \{\
376 \h'-04' 1.\h'+01'\c
378 .el \{\
379 .sp -1
380 .IP "  1." 4.2
382 Any object with modification time newer than the
383 \fB\-\-prune\fR
384 date is kept, along with everything reachable from it\&.
387 .RS 4
388 .ie n \{\
389 \h'-04' 2.\h'+01'\c
391 .el \{\
392 .sp -1
393 .IP "  2." 4.2
395 Most operations that add an object to the database update the modification time of the object if it is already present so that #1 applies\&.
398 However, these features fall short of a complete solution, so users who run commands concurrently have to live with some risk of corruption (which seems to be low in practice)\&.
399 .SH "HOOKS"
401 The \fIgit gc \-\-auto\fR command will run the \fIpre\-auto\-gc\fR hook\&. See \fBgithooks\fR(5) for more information\&.
402 .SH "SEE ALSO"
404 \fBgit-prune\fR(1) \fBgit-reflog\fR(1) \fBgit-repack\fR(1) \fBgit-rerere\fR(1)
405 .SH "GIT"
407 Part of the \fBgit\fR(1) suite