blob: 52234987f9993a0b9f6d3f50ce9b26e074f3b58d [file] [log] [blame]
Shawn O. Pearce30f610b2006-12-27 02:17:59 -05001git-gc(1)
2=========
3
4NAME
5----
6git-gc - Cleanup unnecessary files and optimize the local repository
7
8
9SYNOPSIS
10--------
Martin von Zweigbergk7791a1d2011-07-01 22:38:26 -040011[verse]
Nguyễn Thái Ngọc Duy64a99eb2013-08-08 18:05:38 +070012'git gc' [--aggressive] [--auto] [--quiet] [--prune=<date> | --no-prune] [--force]
Shawn O. Pearce30f610b2006-12-27 02:17:59 -050013
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
Thomas Rast0b444cd2010-01-10 00:33:00 +010019created from prior invocations of 'git add'.
Shawn O. Pearce30f610b2006-12-27 02:17:59 -050020
21Users are encouraged to run this task on a regular basis within
22each repository to maintain good disk space utilization and good
Nicolas Pitre05f30452008-03-19 17:06:11 -040023operating performance.
24
Thomas Rast0b444cd2010-01-10 00:33:00 +010025Some git commands may automatically run 'git gc'; see the `--auto` flag
Nicolas Pitre05f30452008-03-19 17:06:11 -040026below 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----------------------
Shawn O. Pearce30f610b2006-12-27 02:17:59 -050032
Junio C Hamanoe3ff4b22007-01-21 23:28:28 -080033OPTIONS
34-------
35
Theodore Tso0d7566a2007-05-09 15:48:39 -040036--aggressive::
Thomas Rast0b444cd2010-01-10 00:33:00 +010037 Usually 'git gc' runs very quickly while providing good disk
Theodore Ts'o50490122007-05-31 19:00:48 -040038 space utilization and performance. This option will cause
Thomas Rast0b444cd2010-01-10 00:33:00 +010039 'git gc' to more aggressively optimize the repository at the expense
Theodore Tso0d7566a2007-05-09 15:48:39 -040040 of taking much more time. The effects of this optimization are
Theodore Ts'o50490122007-05-31 19:00:48 -040041 persistent, so this option only needs to be used occasionally; every
Theodore Tso0d7566a2007-05-09 15:48:39 -040042 few hundred changesets or so.
Junio C Hamanoe3ff4b22007-01-21 23:28:28 -080043
Junio C Hamanoe9831e82007-09-17 00:39:52 -070044--auto::
Thomas Rast0b444cd2010-01-10 00:33:00 +010045 With this option, 'git gc' checks whether any housekeeping is
Jeff Kingd7e56db2007-10-18 22:05:10 -040046 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
Thomas Rast0b444cd2010-01-10 00:33:00 +010054`git repack -d -l`. Setting the value of `gc.auto` to 0
Jeff Kingd7e56db2007-10-18 22:05:10 -040055disables automatic packing of loose objects.
56+
Nguyễn Thái Ngọc Duyda0005b2015-03-11 16:32:45 -040057If the number of packs exceeds the value of `gc.autoPackLimit`,
Jeff Kingd7e56db2007-10-18 22:05:10 -040058then existing packs (except those marked with a `.keep` file)
59are consolidated into a single pack by using the `-A` option of
Nguyễn Thái Ngọc Duyda0005b2015-03-11 16:32:45 -040060'git repack'. Setting `gc.autoPackLimit` to 0 disables
Jeff Kingd7e56db2007-10-18 22:05:10 -040061automatic consolidation of packs.
Junio C Hamanoe9831e82007-09-17 00:39:52 -070062
Johannes Schindelin58e9d9d2009-02-14 23:10:10 +010063--prune=<date>::
64 Prune loose objects older than date (default is 2 weeks ago,
Michael Haggerty61929402013-04-18 09:46:34 +020065 overridable by the config variable `gc.pruneExpire`).
66 --prune=all prunes loose objects regardless of their age.
67 --prune is on by default.
Johannes Schindelin58e9d9d2009-02-14 23:10:10 +010068
69--no-prune::
70 Do not prune any loose objects.
71
Frank Lichtenhelda0c14cb2008-02-29 22:53:39 +010072--quiet::
73 Suppress all progress reports.
74
Nguyễn Thái Ngọc Duy64a99eb2013-08-08 18:05:38 +070075--force::
76 Force `git gc` to run even if there may be another `git gc`
77 instance running on this repository.
78
Shawn O. Pearce30f610b2006-12-27 02:17:59 -050079Configuration
80-------------
81
82The optional configuration variable 'gc.reflogExpire' can be
83set to indicate how long historical entries within each branch's
84reflog should remain available in this repository. The setting is
85expressed as a length of time, for example '90 days' or '3 months'.
86It defaults to '90 days'.
87
88The optional configuration variable 'gc.reflogExpireUnreachable'
89can be set to indicate how long historical reflog entries which
90are not part of the current branch should remain available in
91this repository. These types of entries are generally created as
Jeff King6cf378f2012-04-26 04:51:57 -040092a result of using `git commit --amend` or `git rebase` and are the
René Scharfe23bfbb82007-01-17 16:32:41 +010093commits prior to the amend or rebase occurring. Since these changes
Shawn O. Pearce30f610b2006-12-27 02:17:59 -050094are not part of the current project most users will want to expire
95them sooner. This option defaults to '30 days'.
96
Junio C Hamanoeb523a82010-04-14 13:12:34 -070097The above two configuration variables can be given to a pattern. For
Matthieu Moy60109d02010-11-02 16:31:21 +010098example, this sets non-default expiry values only to remote-tracking
Junio C Hamanoeb523a82010-04-14 13:12:34 -070099branches:
100
101------------
102[gc "refs/remotes/*"]
103 reflogExpire = never
Nguyễn Thái Ngọc Duyda0005b2015-03-11 16:32:45 -0400104 reflogExpireUnreachable = 3 days
Junio C Hamanoeb523a82010-04-14 13:12:34 -0700105------------
106
Nguyễn Thái Ngọc Duyda0005b2015-03-11 16:32:45 -0400107The optional configuration variable 'gc.rerereResolved' indicates
Shawn O. Pearce30f610b2006-12-27 02:17:59 -0500108how long records of conflicted merge you resolved earlier are
109kept. This defaults to 60 days.
110
Nguyễn Thái Ngọc Duyda0005b2015-03-11 16:32:45 -0400111The optional configuration variable 'gc.rerereUnresolved' indicates
Shawn O. Pearce30f610b2006-12-27 02:17:59 -0500112how long records of conflicted merge you have not resolved are
113kept. This defaults to 15 days.
114
Nguyễn Thái Ngọc Duyda0005b2015-03-11 16:32:45 -0400115The optional configuration variable 'gc.packRefs' determines if
Jiang Xin4be0c352010-12-16 15:16:49 +0800116'git gc' runs 'git pack-refs'. This can be set to "notbare" to enable
Florian La Rochefe2128a2008-01-09 17:05:16 +0100117it within all non-bare repos or it can be set to a boolean value.
118This defaults to true.
Shawn O. Pearce30f610b2006-12-27 02:17:59 -0500119
Theodore Tso0d7566a2007-05-09 15:48:39 -0400120The optional configuration variable 'gc.aggressiveWindow' controls how
121much time is spent optimizing the delta compression of the objects in
122the repository when the --aggressive option is specified. The larger
123the value, the more time is spent optimizing the delta compression. See
Dan McGee5162e692007-12-29 00:20:38 -0600124the documentation for the --window' option in linkgit:git-repack[1] for
Brandon Caseyc9486ae2009-09-28 09:56:00 -0500125more details. This defaults to 250.
Theodore Tso0d7566a2007-05-09 15:48:39 -0400126
Nguyễn Thái Ngọc Duy125f8142014-03-16 20:35:03 +0700127Similarly, the optional configuration variable 'gc.aggressiveDepth'
128controls --depth option in linkgit:git-repack[1]. This defaults to 250.
129
Johannes Schindelin25ee9732008-03-12 21:55:47 +0100130The optional configuration variable 'gc.pruneExpire' controls how old
131the unreferenced loose objects have to be before they are pruned. The
132default is "2 weeks ago".
133
Jeff King3ffb58b2008-04-23 21:28:36 -0400134
135Notes
136-----
137
Thomas Rast0b444cd2010-01-10 00:33:00 +0100138'git gc' tries very hard to be safe about the garbage it collects. In
Jeff King3ffb58b2008-04-23 21:28:36 -0400139particular, it will keep not only objects referenced by your current set
Matthieu Moy60109d02010-11-02 16:31:21 +0100140of branches and tags, but also objects referenced by the index,
141remote-tracking branches, refs saved by 'git filter-branch' in
Matt Kraai3ed0b112009-10-19 22:22:25 -0700142refs/original/, or reflogs (which may reference commits in branches
Jeff King3ffb58b2008-04-23 21:28:36 -0400143that were later amended or rewound).
144
145If you are expecting some objects to be collected and they aren't, check
146all of those locations and decide whether it makes sense in your case to
147remove those references.
148
Chris Packham66bd8ab2010-06-30 13:41:27 -0700149HOOKS
150-----
151
152The 'git gc --auto' command will run the 'pre-auto-gc' hook. See
153linkgit:githooks[5] for more information.
154
155
Junio C Hamano56ae8df2008-05-28 16:55:27 -0700156SEE ALSO
Shawn O. Pearce30f610b2006-12-27 02:17:59 -0500157--------
Dan McGee5162e692007-12-29 00:20:38 -0600158linkgit:git-prune[1]
159linkgit:git-reflog[1]
160linkgit:git-repack[1]
161linkgit:git-rerere[1]
Shawn O. Pearce30f610b2006-12-27 02:17:59 -0500162
Shawn O. Pearce30f610b2006-12-27 02:17:59 -0500163GIT
164---
Christian Couder9e1f0a82008-06-06 09:07:32 +0200165Part of the linkgit:git[1] suite