Shawn O. Pearce | 30f610b | 2006-12-27 02:17:59 -0500 | [diff] [blame] | 1 | git-gc(1) |
| 2 | ========= |
| 3 | |
| 4 | NAME |
| 5 | ---- |
| 6 | git-gc - Cleanup unnecessary files and optimize the local repository |
| 7 | |
| 8 | |
| 9 | SYNOPSIS |
| 10 | -------- |
Martin von Zweigbergk | 7791a1d | 2011-07-01 22:38:26 -0400 | [diff] [blame] | 11 | [verse] |
Nguyễn Thái Ngọc Duy | 64a99eb | 2013-08-08 18:05:38 +0700 | [diff] [blame] | 12 | 'git gc' [--aggressive] [--auto] [--quiet] [--prune=<date> | --no-prune] [--force] |
Shawn O. Pearce | 30f610b | 2006-12-27 02:17:59 -0500 | [diff] [blame] | 13 | |
| 14 | DESCRIPTION |
| 15 | ----------- |
| 16 | Runs a number of housekeeping tasks within the current repository, |
| 17 | such as compressing file revisions (to reduce disk space and increase |
| 18 | performance) and removing unreachable objects which may have been |
Thomas Rast | 0b444cd | 2010-01-10 00:33:00 +0100 | [diff] [blame] | 19 | created from prior invocations of 'git add'. |
Shawn O. Pearce | 30f610b | 2006-12-27 02:17:59 -0500 | [diff] [blame] | 20 | |
| 21 | Users are encouraged to run this task on a regular basis within |
| 22 | each repository to maintain good disk space utilization and good |
Nicolas Pitre | 05f3045 | 2008-03-19 17:06:11 -0400 | [diff] [blame] | 23 | operating performance. |
| 24 | |
Thomas Rast | 0b444cd | 2010-01-10 00:33:00 +0100 | [diff] [blame] | 25 | Some git commands may automatically run 'git gc'; see the `--auto` flag |
Nicolas Pitre | 05f3045 | 2008-03-19 17:06:11 -0400 | [diff] [blame] | 26 | below for details. If you know what you're doing and all you want is to |
| 27 | disable this behavior permanently without further considerations, just do: |
| 28 | |
| 29 | ---------------------- |
| 30 | $ git config --global gc.auto 0 |
| 31 | ---------------------- |
Shawn O. Pearce | 30f610b | 2006-12-27 02:17:59 -0500 | [diff] [blame] | 32 | |
Junio C Hamano | e3ff4b2 | 2007-01-21 23:28:28 -0800 | [diff] [blame] | 33 | OPTIONS |
| 34 | ------- |
| 35 | |
Theodore Tso | 0d7566a | 2007-05-09 15:48:39 -0400 | [diff] [blame] | 36 | --aggressive:: |
Thomas Rast | 0b444cd | 2010-01-10 00:33:00 +0100 | [diff] [blame] | 37 | Usually 'git gc' runs very quickly while providing good disk |
Theodore Ts'o | 5049012 | 2007-05-31 19:00:48 -0400 | [diff] [blame] | 38 | space utilization and performance. This option will cause |
Thomas Rast | 0b444cd | 2010-01-10 00:33:00 +0100 | [diff] [blame] | 39 | 'git gc' to more aggressively optimize the repository at the expense |
Theodore Tso | 0d7566a | 2007-05-09 15:48:39 -0400 | [diff] [blame] | 40 | of taking much more time. The effects of this optimization are |
Theodore Ts'o | 5049012 | 2007-05-31 19:00:48 -0400 | [diff] [blame] | 41 | persistent, so this option only needs to be used occasionally; every |
Theodore Tso | 0d7566a | 2007-05-09 15:48:39 -0400 | [diff] [blame] | 42 | few hundred changesets or so. |
Junio C Hamano | e3ff4b2 | 2007-01-21 23:28:28 -0800 | [diff] [blame] | 43 | |
Junio C Hamano | e9831e8 | 2007-09-17 00:39:52 -0700 | [diff] [blame] | 44 | --auto:: |
Thomas Rast | 0b444cd | 2010-01-10 00:33:00 +0100 | [diff] [blame] | 45 | With this option, 'git gc' checks whether any housekeeping is |
Jeff King | d7e56db | 2007-10-18 22:05:10 -0400 | [diff] [blame] | 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 | + |
| 50 | Housekeeping is required if there are too many loose objects or |
| 51 | too many packs in the repository. If the number of loose objects |
| 52 | exceeds the value of the `gc.auto` configuration variable, then |
| 53 | all loose objects are combined into a single pack using |
Thomas Rast | 0b444cd | 2010-01-10 00:33:00 +0100 | [diff] [blame] | 54 | `git repack -d -l`. Setting the value of `gc.auto` to 0 |
Jeff King | d7e56db | 2007-10-18 22:05:10 -0400 | [diff] [blame] | 55 | disables automatic packing of loose objects. |
| 56 | + |
Nguyễn Thái Ngọc Duy | da0005b | 2015-03-11 16:32:45 -0400 | [diff] [blame] | 57 | If the number of packs exceeds the value of `gc.autoPackLimit`, |
Jeff King | d7e56db | 2007-10-18 22:05:10 -0400 | [diff] [blame] | 58 | then existing packs (except those marked with a `.keep` file) |
| 59 | are consolidated into a single pack by using the `-A` option of |
Nguyễn Thái Ngọc Duy | da0005b | 2015-03-11 16:32:45 -0400 | [diff] [blame] | 60 | 'git repack'. Setting `gc.autoPackLimit` to 0 disables |
Jeff King | d7e56db | 2007-10-18 22:05:10 -0400 | [diff] [blame] | 61 | automatic consolidation of packs. |
Junio C Hamano | e9831e8 | 2007-09-17 00:39:52 -0700 | [diff] [blame] | 62 | |
Johannes Schindelin | 58e9d9d | 2009-02-14 23:10:10 +0100 | [diff] [blame] | 63 | --prune=<date>:: |
| 64 | Prune loose objects older than date (default is 2 weeks ago, |
Michael Haggerty | 6192940 | 2013-04-18 09:46:34 +0200 | [diff] [blame] | 65 | overridable by the config variable `gc.pruneExpire`). |
| 66 | --prune=all prunes loose objects regardless of their age. |
| 67 | --prune is on by default. |
Johannes Schindelin | 58e9d9d | 2009-02-14 23:10:10 +0100 | [diff] [blame] | 68 | |
| 69 | --no-prune:: |
| 70 | Do not prune any loose objects. |
| 71 | |
Frank Lichtenheld | a0c14cb | 2008-02-29 22:53:39 +0100 | [diff] [blame] | 72 | --quiet:: |
| 73 | Suppress all progress reports. |
| 74 | |
Nguyễn Thái Ngọc Duy | 64a99eb | 2013-08-08 18:05:38 +0700 | [diff] [blame] | 75 | --force:: |
| 76 | Force `git gc` to run even if there may be another `git gc` |
| 77 | instance running on this repository. |
| 78 | |
Shawn O. Pearce | 30f610b | 2006-12-27 02:17:59 -0500 | [diff] [blame] | 79 | Configuration |
| 80 | ------------- |
| 81 | |
| 82 | The optional configuration variable 'gc.reflogExpire' can be |
| 83 | set to indicate how long historical entries within each branch's |
| 84 | reflog should remain available in this repository. The setting is |
| 85 | expressed as a length of time, for example '90 days' or '3 months'. |
| 86 | It defaults to '90 days'. |
| 87 | |
| 88 | The optional configuration variable 'gc.reflogExpireUnreachable' |
| 89 | can be set to indicate how long historical reflog entries which |
| 90 | are not part of the current branch should remain available in |
| 91 | this repository. These types of entries are generally created as |
Jeff King | 6cf378f | 2012-04-26 04:51:57 -0400 | [diff] [blame] | 92 | a result of using `git commit --amend` or `git rebase` and are the |
René Scharfe | 23bfbb8 | 2007-01-17 16:32:41 +0100 | [diff] [blame] | 93 | commits prior to the amend or rebase occurring. Since these changes |
Shawn O. Pearce | 30f610b | 2006-12-27 02:17:59 -0500 | [diff] [blame] | 94 | are not part of the current project most users will want to expire |
| 95 | them sooner. This option defaults to '30 days'. |
| 96 | |
Junio C Hamano | eb523a8 | 2010-04-14 13:12:34 -0700 | [diff] [blame] | 97 | The above two configuration variables can be given to a pattern. For |
Matthieu Moy | 60109d0 | 2010-11-02 16:31:21 +0100 | [diff] [blame] | 98 | example, this sets non-default expiry values only to remote-tracking |
Junio C Hamano | eb523a8 | 2010-04-14 13:12:34 -0700 | [diff] [blame] | 99 | branches: |
| 100 | |
| 101 | ------------ |
| 102 | [gc "refs/remotes/*"] |
| 103 | reflogExpire = never |
Nguyễn Thái Ngọc Duy | da0005b | 2015-03-11 16:32:45 -0400 | [diff] [blame] | 104 | reflogExpireUnreachable = 3 days |
Junio C Hamano | eb523a8 | 2010-04-14 13:12:34 -0700 | [diff] [blame] | 105 | ------------ |
| 106 | |
Nguyễn Thái Ngọc Duy | da0005b | 2015-03-11 16:32:45 -0400 | [diff] [blame] | 107 | The optional configuration variable 'gc.rerereResolved' indicates |
Shawn O. Pearce | 30f610b | 2006-12-27 02:17:59 -0500 | [diff] [blame] | 108 | how long records of conflicted merge you resolved earlier are |
| 109 | kept. This defaults to 60 days. |
| 110 | |
Nguyễn Thái Ngọc Duy | da0005b | 2015-03-11 16:32:45 -0400 | [diff] [blame] | 111 | The optional configuration variable 'gc.rerereUnresolved' indicates |
Shawn O. Pearce | 30f610b | 2006-12-27 02:17:59 -0500 | [diff] [blame] | 112 | how long records of conflicted merge you have not resolved are |
| 113 | kept. This defaults to 15 days. |
| 114 | |
Nguyễn Thái Ngọc Duy | da0005b | 2015-03-11 16:32:45 -0400 | [diff] [blame] | 115 | The optional configuration variable 'gc.packRefs' determines if |
Jiang Xin | 4be0c35 | 2010-12-16 15:16:49 +0800 | [diff] [blame] | 116 | 'git gc' runs 'git pack-refs'. This can be set to "notbare" to enable |
Florian La Roche | fe2128a | 2008-01-09 17:05:16 +0100 | [diff] [blame] | 117 | it within all non-bare repos or it can be set to a boolean value. |
| 118 | This defaults to true. |
Shawn O. Pearce | 30f610b | 2006-12-27 02:17:59 -0500 | [diff] [blame] | 119 | |
Theodore Tso | 0d7566a | 2007-05-09 15:48:39 -0400 | [diff] [blame] | 120 | The optional configuration variable 'gc.aggressiveWindow' controls how |
| 121 | much time is spent optimizing the delta compression of the objects in |
| 122 | the repository when the --aggressive option is specified. The larger |
| 123 | the value, the more time is spent optimizing the delta compression. See |
Dan McGee | 5162e69 | 2007-12-29 00:20:38 -0600 | [diff] [blame] | 124 | the documentation for the --window' option in linkgit:git-repack[1] for |
Brandon Casey | c9486ae | 2009-09-28 09:56:00 -0500 | [diff] [blame] | 125 | more details. This defaults to 250. |
Theodore Tso | 0d7566a | 2007-05-09 15:48:39 -0400 | [diff] [blame] | 126 | |
Nguyễn Thái Ngọc Duy | 125f814 | 2014-03-16 20:35:03 +0700 | [diff] [blame] | 127 | Similarly, the optional configuration variable 'gc.aggressiveDepth' |
| 128 | controls --depth option in linkgit:git-repack[1]. This defaults to 250. |
| 129 | |
Johannes Schindelin | 25ee973 | 2008-03-12 21:55:47 +0100 | [diff] [blame] | 130 | The optional configuration variable 'gc.pruneExpire' controls how old |
| 131 | the unreferenced loose objects have to be before they are pruned. The |
| 132 | default is "2 weeks ago". |
| 133 | |
Jeff King | 3ffb58b | 2008-04-23 21:28:36 -0400 | [diff] [blame] | 134 | |
| 135 | Notes |
| 136 | ----- |
| 137 | |
Thomas Rast | 0b444cd | 2010-01-10 00:33:00 +0100 | [diff] [blame] | 138 | 'git gc' tries very hard to be safe about the garbage it collects. In |
Jeff King | 3ffb58b | 2008-04-23 21:28:36 -0400 | [diff] [blame] | 139 | particular, it will keep not only objects referenced by your current set |
Matthieu Moy | 60109d0 | 2010-11-02 16:31:21 +0100 | [diff] [blame] | 140 | of branches and tags, but also objects referenced by the index, |
| 141 | remote-tracking branches, refs saved by 'git filter-branch' in |
Matt Kraai | 3ed0b11 | 2009-10-19 22:22:25 -0700 | [diff] [blame] | 142 | refs/original/, or reflogs (which may reference commits in branches |
Jeff King | 3ffb58b | 2008-04-23 21:28:36 -0400 | [diff] [blame] | 143 | that were later amended or rewound). |
| 144 | |
| 145 | If you are expecting some objects to be collected and they aren't, check |
| 146 | all of those locations and decide whether it makes sense in your case to |
| 147 | remove those references. |
| 148 | |
Chris Packham | 66bd8ab | 2010-06-30 13:41:27 -0700 | [diff] [blame] | 149 | HOOKS |
| 150 | ----- |
| 151 | |
| 152 | The 'git gc --auto' command will run the 'pre-auto-gc' hook. See |
| 153 | linkgit:githooks[5] for more information. |
| 154 | |
| 155 | |
Junio C Hamano | 56ae8df | 2008-05-28 16:55:27 -0700 | [diff] [blame] | 156 | SEE ALSO |
Shawn O. Pearce | 30f610b | 2006-12-27 02:17:59 -0500 | [diff] [blame] | 157 | -------- |
Dan McGee | 5162e69 | 2007-12-29 00:20:38 -0600 | [diff] [blame] | 158 | linkgit:git-prune[1] |
| 159 | linkgit:git-reflog[1] |
| 160 | linkgit:git-repack[1] |
| 161 | linkgit:git-rerere[1] |
Shawn O. Pearce | 30f610b | 2006-12-27 02:17:59 -0500 | [diff] [blame] | 162 | |
Shawn O. Pearce | 30f610b | 2006-12-27 02:17:59 -0500 | [diff] [blame] | 163 | GIT |
| 164 | --- |
Christian Couder | 9e1f0a8 | 2008-06-06 09:07:32 +0200 | [diff] [blame] | 165 | Part of the linkgit:git[1] suite |