blob: a7c1b0f60edb6ccd38ddb3ea4624fe0d213820b4 [file] [log] [blame]
Junio C Hamano52299462006-12-28 00:59:381git-gc(1)
2=========
3
4NAME
5----
6git-gc - Cleanup unnecessary files and optimize the local repository
7
8
9SYNOPSIS
10--------
Junio C Hamano15567bc2011-07-23 00:51:5911[verse]
Junio C Hamanob9d9d902018-05-23 07:07:4212'git gc' [--aggressive] [--auto] [--quiet] [--prune=<date> | --no-prune] [--force] [--keep-largest-pack]
Junio C Hamano52299462006-12-28 00:59:3813
14DESCRIPTION
15-----------
16Runs a number of housekeeping tasks within the current repository,
17such as compressing file revisions (to reduce disk space and increase
Junio C Hamano85151f32018-04-10 00:52:2618performance), removing unreachable objects which may have been
19created from prior invocations of 'git add', packing refs, pruning
Junio C Hamanoa4df8ed2018-10-26 06:37:1320reflog, rerere metadata or stale working trees. May also update ancillary
21indexes such as the commit-graph.
Junio C Hamano52299462006-12-28 00:59:3822
23Users are encouraged to run this task on a regular basis within
24each repository to maintain good disk space utilization and good
Junio C Hamanod04b60c2008-03-20 08:46:0425operating performance.
26
Junio C Hamano1aa40d22010-01-21 17:46:4327Some git commands may automatically run 'git gc'; see the `--auto` flag
Junio C Hamanod04b60c2008-03-20 08:46:0428below 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----------------------
Junio C Hamano52299462006-12-28 00:59:3834
Junio C Hamanof65d9282007-01-22 09:00:1335OPTIONS
36-------
37
Junio C Hamanof2ce2972007-05-20 19:12:0938--aggressive::
Junio C Hamano1aa40d22010-01-21 17:46:4339Usually 'git gc' runs very quickly while providing good disk
Junio C Hamano679d22d2007-06-02 21:13:4440space utilization and performance. This option will cause
Junio C Hamano1aa40d22010-01-21 17:46:4341'git gc' to more aggressively optimize the repository at the expense
Junio C Hamanof2ce2972007-05-20 19:12:0942of taking much more time. The effects of this optimization are
Junio C Hamano679d22d2007-06-02 21:13:4443persistent, so this option only needs to be used occasionally; every
Junio C Hamanof2ce2972007-05-20 19:12:0944few hundred changesets or so.
Junio C Hamanof65d9282007-01-22 09:00:1345
Junio C Hamano1b50ce92007-10-03 12:05:5346--auto::
Junio C Hamano1aa40d22010-01-21 17:46:4347With this option, 'git gc' checks whether any housekeeping is
Junio C Hamano764a6672007-10-23 01:23:3148required; if not, it exits without performing any work.
49Some git commands run `git gc --auto` after performing
Junio C Hamano85151f32018-04-10 00:52:2650operations that could create many loose objects. Housekeeping
51is required if there are too many loose objects or too many
52packs in the repository.
Junio C Hamano764a6672007-10-23 01:23:3153+
Junio C Hamano85151f32018-04-10 00:52:2654If 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.
Junio C Hamano764a6672007-10-23 01:23:3158+
Junio C Hamano322c6242015-03-23 21:32:4659If the number of packs exceeds the value of `gc.autoPackLimit`,
Junio C Hamanob9d9d902018-05-23 07:07:4260then existing packs (except those marked with a `.keep` file
61or over `gc.bigPackThreshold` limit)
Junio C Hamano764a6672007-10-23 01:23:3162are consolidated into a single pack by using the `-A` option of
Junio C Hamanob9d9d902018-05-23 07:07:4263'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.
Junio C Hamano85151f32018-04-10 00:52:2670+
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
Junio C Hamano1b50ce92007-10-03 12:05:5375
Junio C Hamano8bc410e2009-02-15 10:38:1976--prune=<date>::
77Prune loose objects older than date (default is 2 weeks ago,
Junio C Hamanoc7102962013-05-29 23:57:1778overridable by the config variable `gc.pruneExpire`).
Junio C Hamanodecc7312019-03-11 09:02:5479--prune=now prunes loose objects regardless of their age and
Junio C Hamano56ace3d2017-01-10 23:43:4180increases the risk of corruption if another process is writing to
81the repository concurrently; see "NOTES" below. --prune is on by
82default.
Junio C Hamano8bc410e2009-02-15 10:38:1983
84--no-prune::
85Do not prune any loose objects.
86
Junio C Hamano69a98582008-03-01 18:42:1887--quiet::
88Suppress all progress reports.
89
Junio C Hamano535ed7a2013-09-04 20:35:5790--force::
91Force `git gc` to run even if there may be another `git gc`
92instance running on this repository.
93
Junio C Hamanob9d9d902018-05-23 07:07:4294--keep-largest-pack::
95All packs except the largest pack and those marked with a
96`.keep` files are consolidated into a single pack. When this
97option is used, `gc.bigPackThreshold` is ignored.
98
99CONFIGURATION
Junio C Hamano52299462006-12-28 00:59:38100-------------
101
Junio C Hamano042f2142016-06-27 18:05:05102The optional configuration variable `gc.reflogExpire` can be
Junio C Hamano52299462006-12-28 00:59:38103set 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
Junio C Hamano042f2142016-06-27 18:05:05108The optional configuration variable `gc.reflogExpireUnreachable`
Junio C Hamano52299462006-12-28 00:59:38109can 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
Junio C Hamanob76a6862012-05-02 22:02:46112a result of using `git commit --amend` or `git rebase` and are the
Junio C Hamanof9771f62007-01-17 17:42:30113commits prior to the amend or rebase occurring. Since these changes
Junio C Hamano52299462006-12-28 00:59:38114are not part of the current project most users will want to expire
115them sooner. This option defaults to '30 days'.
116
Junio C Hamanocc7636a2010-05-21 14:57:53117The above two configuration variables can be given to a pattern. For
Junio C Hamano97bcb482010-11-25 03:16:07118example, this sets non-default expiry values only to remote-tracking
Junio C Hamanocc7636a2010-05-21 14:57:53119branches:
120
121------------
122[gc "refs/remotes/*"]
123reflogExpire = never
Junio C Hamano322c6242015-03-23 21:32:46124reflogExpireUnreachable = 3 days
Junio C Hamanocc7636a2010-05-21 14:57:53125------------
126
Junio C Hamano042f2142016-06-27 18:05:05127The optional configuration variable `gc.rerereResolved` indicates
Junio C Hamano52299462006-12-28 00:59:38128how long records of conflicted merge you resolved earlier are
129kept. This defaults to 60 days.
130
Junio C Hamano042f2142016-06-27 18:05:05131The optional configuration variable `gc.rerereUnresolved` indicates
Junio C Hamano52299462006-12-28 00:59:38132how long records of conflicted merge you have not resolved are
133kept. This defaults to 15 days.
134
Junio C Hamano042f2142016-06-27 18:05:05135The optional configuration variable `gc.packRefs` determines if
Junio C Hamanocdd1c332010-12-20 10:08:00136'git gc' runs 'git pack-refs'. This can be set to "notbare" to enable
Junio C Hamanoe77b0152008-01-12 06:44:17137it within all non-bare repos or it can be set to a boolean value.
138This defaults to true.
Junio C Hamano52299462006-12-28 00:59:38139
Junio C Hamanoace33e42019-01-18 23:16:05140The optional configuration variable `gc.writeCommitGraph` determines if
Junio C Hamanof09b7cd2018-08-02 23:01:45141'git gc' should run 'git commit-graph write'. This can be set to a
142boolean value. This defaults to false.
143
Junio C Hamano042f2142016-06-27 18:05:05144The optional configuration variable `gc.aggressiveWindow` controls how
Junio C Hamanof2ce2972007-05-20 19:12:09145much 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
Junio C Hamanoccb82522018-05-08 07:52:09148the documentation for the --window option in linkgit:git-repack[1] for
Junio C Hamanoae4a8f32009-10-04 09:54:54149more details. This defaults to 250.
Junio C Hamanof2ce2972007-05-20 19:12:09150
Junio C Hamano042f2142016-06-27 18:05:05151Similarly, the optional configuration variable `gc.aggressiveDepth`
Junio C Hamanofa0dac32017-02-24 19:02:55152controls --depth option in linkgit:git-repack[1]. This defaults to 50.
Junio C Hamano624dd4c2014-04-03 21:56:30153
Junio C Hamano042f2142016-06-27 18:05:05154The optional configuration variable `gc.pruneExpire` controls how old
Junio C Hamano09a926d2008-03-13 07:55:29155the unreferenced loose objects have to be before they are pruned. The
156default is "2 weeks ago".
157
Junio C Hamano85151f32018-04-10 00:52:26158Optional 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
Junio C Hamano2f102bb2008-04-26 02:23:37162
Junio C Hamanob9d9d902018-05-23 07:07:42163NOTES
Junio C Hamano2f102bb2008-04-26 02:23:37164-----
165
Junio C Hamano56ace3d2017-01-10 23:43:41166'git gc' tries very hard not to delete objects that are referenced
167anywhere in your repository. In
Junio C Hamano2f102bb2008-04-26 02:23:37168particular, it will keep not only objects referenced by your current set
Junio C Hamano97bcb482010-11-25 03:16:07169of branches and tags, but also objects referenced by the index,
170remote-tracking branches, refs saved by 'git filter-branch' in
Junio C Hamano4232bc42009-10-20 07:49:31171refs/original/, or reflogs (which may reference commits in branches
Junio C Hamano2f102bb2008-04-26 02:23:37172that were later amended or rewound).
Junio C Hamano56ace3d2017-01-10 23:43:41173If you are expecting some objects to be deleted and they aren't, check
Junio C Hamano2f102bb2008-04-26 02:23:37174all of those locations and decide whether it makes sense in your case to
175remove those references.
176
Junio C Hamano56ace3d2017-01-10 23:43:41177On 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
Junio C Hamano3e3aa812010-07-05 23:25:23196HOOKS
197-----
198
199The 'git gc --auto' command will run the 'pre-auto-gc' hook. See
200linkgit:githooks[5] for more information.
201
202
Junio C Hamano9049d912008-05-29 02:09:50203SEE ALSO
Junio C Hamano52299462006-12-28 00:59:38204--------
Junio C Hamano35738e82008-01-07 07:55:46205linkgit:git-prune[1]
206linkgit:git-reflog[1]
207linkgit:git-repack[1]
208linkgit:git-rerere[1]
Junio C Hamano52299462006-12-28 00:59:38209
Junio C Hamano52299462006-12-28 00:59:38210GIT
211---
Junio C Hamanof7c042d2008-06-06 22:50:53212Part of the linkgit:git[1] suite