]> git.ipfire.org Git - thirdparty/git.git/blame - Documentation/git-gc.txt
date.c: add parse_expiry_date()
[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]
58e9d9d4 12'git gc' [--aggressive] [--auto] [--quiet] [--prune=<date> | --no-prune]
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
18performance) and removing unreachable objects which may have been
0b444cdb 19created from prior invocations of 'git add'.
30f610b7
SP
20
21Users are encouraged to run this task on a regular basis within
22each repository to maintain good disk space utilization and good
05f30452
NP
23operating performance.
24
0b444cdb 25Some git commands may automatically run 'git gc'; see the `--auto` flag
05f30452
NP
26below for details. If you know what you're doing and all you want is to
27disable this behavior permanently without further considerations, just do:
28
29----------------------
30$ git config --global gc.auto 0
31----------------------
30f610b7 32
e3ff4b24
JH
33OPTIONS
34-------
35
0d7566a5 36--aggressive::
0b444cdb 37 Usually 'git gc' runs very quickly while providing good disk
5049012f 38 space utilization and performance. This option will cause
0b444cdb 39 'git gc' to more aggressively optimize the repository at the expense
0d7566a5 40 of taking much more time. The effects of this optimization are
5049012f 41 persistent, so this option only needs to be used occasionally; every
0d7566a5 42 few hundred changesets or so.
e9831e83
JH
43
44--auto::
0b444cdb 45 With this option, 'git gc' checks whether any housekeeping is
d7e56dbc
JK
46 required; if not, it exits without performing any work.
47 Some git commands run `git gc --auto` after performing
48 operations that could create many loose objects.
49+
50Housekeeping is required if there are too many loose objects or
51too many packs in the repository. If the number of loose objects
52exceeds the value of the `gc.auto` configuration variable, then
53all loose objects are combined into a single pack using
0b444cdb 54`git repack -d -l`. Setting the value of `gc.auto` to 0
d7e56dbc
JK
55disables automatic packing of loose objects.
56+
57If the number of packs exceeds the value of `gc.autopacklimit`,
58then existing packs (except those marked with a `.keep` file)
59are consolidated into a single pack by using the `-A` option of
0b444cdb 60'git repack'. Setting `gc.autopacklimit` to 0 disables
d7e56dbc 61automatic consolidation of packs.
e3ff4b24 62
58e9d9d4
JS
63--prune=<date>::
64 Prune loose objects older than date (default is 2 weeks ago,
93197898 65 overridable by the config variable `gc.pruneExpire`). This
58e9d9d4
JS
66 option is on by default.
67
68--no-prune::
69 Do not prune any loose objects.
70
a0c14cbb
FL
71--quiet::
72 Suppress all progress reports.
73
30f610b7
SP
74Configuration
75-------------
76
77The optional configuration variable 'gc.reflogExpire' can be
78set to indicate how long historical entries within each branch's
79reflog should remain available in this repository. The setting is
80expressed as a length of time, for example '90 days' or '3 months'.
81It defaults to '90 days'.
82
83The optional configuration variable 'gc.reflogExpireUnreachable'
84can be set to indicate how long historical reflog entries which
85are not part of the current branch should remain available in
86this repository. These types of entries are generally created as
6cf378f0 87a result of using `git commit --amend` or `git rebase` and are the
23bfbb81 88commits prior to the amend or rebase occurring. Since these changes
30f610b7
SP
89are not part of the current project most users will want to expire
90them sooner. This option defaults to '30 days'.
91
eb523a8d 92The above two configuration variables can be given to a pattern. For
60109d0e 93example, this sets non-default expiry values only to remote-tracking
eb523a8d
JH
94branches:
95
96------------
97[gc "refs/remotes/*"]
98 reflogExpire = never
99 reflogexpireUnreachable = 3 days
100------------
101
30f610b7
SP
102The optional configuration variable 'gc.rerereresolved' indicates
103how long records of conflicted merge you resolved earlier are
104kept. This defaults to 60 days.
105
106The optional configuration variable 'gc.rerereunresolved' indicates
107how long records of conflicted merge you have not resolved are
108kept. This defaults to 15 days.
109
c2120e5e 110The optional configuration variable 'gc.packrefs' determines if
4be0c352 111'git gc' runs 'git pack-refs'. This can be set to "notbare" to enable
fe2128a8
FLR
112it within all non-bare repos or it can be set to a boolean value.
113This defaults to true.
30f610b7 114
0d7566a5
TT
115The optional configuration variable 'gc.aggressiveWindow' controls how
116much time is spent optimizing the delta compression of the objects in
117the repository when the --aggressive option is specified. The larger
118the value, the more time is spent optimizing the delta compression. See
5162e697 119the documentation for the --window' option in linkgit:git-repack[1] for
c9486ae8 120more details. This defaults to 250.
0d7566a5 121
25ee9731
JS
122The optional configuration variable 'gc.pruneExpire' controls how old
123the unreferenced loose objects have to be before they are pruned. The
124default is "2 weeks ago".
125
3ffb58be
JK
126
127Notes
128-----
129
0b444cdb 130'git gc' tries very hard to be safe about the garbage it collects. In
3ffb58be 131particular, it will keep not only objects referenced by your current set
60109d0e
MM
132of branches and tags, but also objects referenced by the index,
133remote-tracking branches, refs saved by 'git filter-branch' in
3ed0b11e 134refs/original/, or reflogs (which may reference commits in branches
3ffb58be
JK
135that were later amended or rewound).
136
137If you are expecting some objects to be collected and they aren't, check
138all of those locations and decide whether it makes sense in your case to
139remove those references.
140
66bd8ab8
CP
141HOOKS
142-----
143
144The 'git gc --auto' command will run the 'pre-auto-gc' hook. See
145linkgit:githooks[5] for more information.
146
147
56ae8df5 148SEE ALSO
30f610b7 149--------
5162e697
DM
150linkgit:git-prune[1]
151linkgit:git-reflog[1]
152linkgit:git-repack[1]
153linkgit:git-rerere[1]
30f610b7 154
30f610b7
SP
155GIT
156---
9e1f0a85 157Part of the linkgit:git[1] suite