Junio C Hamano | 5229946 | 2006-12-28 00:59:38 | [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 | -------- |
Junio C Hamano | fce7c7e | 2008-07-02 03:06:38 | [diff] [blame] | 11 | 'git gc' [--aggressive] [--auto] [--quiet] |
Junio C Hamano | 5229946 | 2006-12-28 00:59:38 | [diff] [blame] | 12 | |
| 13 | DESCRIPTION |
| 14 | ----------- |
| 15 | Runs a number of housekeeping tasks within the current repository, |
| 16 | such as compressing file revisions (to reduce disk space and increase |
| 17 | performance) and removing unreachable objects which may have been |
Junio C Hamano | ba4b928 | 2008-07-06 05:20:31 | [diff] [blame] | 18 | created from prior invocations of 'git-add'. |
Junio C Hamano | 5229946 | 2006-12-28 00:59:38 | [diff] [blame] | 19 | |
| 20 | Users are encouraged to run this task on a regular basis within |
| 21 | each repository to maintain good disk space utilization and good |
Junio C Hamano | d04b60c | 2008-03-20 08:46:04 | [diff] [blame] | 22 | operating performance. |
| 23 | |
Junio C Hamano | ba4b928 | 2008-07-06 05:20:31 | [diff] [blame] | 24 | Some git commands may automatically run 'git-gc'; see the `--auto` flag |
Junio C Hamano | d04b60c | 2008-03-20 08:46:04 | [diff] [blame] | 25 | below for details. If you know what you're doing and all you want is to |
| 26 | disable this behavior permanently without further considerations, just do: |
| 27 | |
| 28 | ---------------------- |
| 29 | $ git config --global gc.auto 0 |
| 30 | ---------------------- |
Junio C Hamano | 5229946 | 2006-12-28 00:59:38 | [diff] [blame] | 31 | |
Junio C Hamano | f65d928 | 2007-01-22 09:00:13 | [diff] [blame] | 32 | OPTIONS |
| 33 | ------- |
| 34 | |
Junio C Hamano | f2ce297 | 2007-05-20 19:12:09 | [diff] [blame] | 35 | --aggressive:: |
Junio C Hamano | ba4b928 | 2008-07-06 05:20:31 | [diff] [blame] | 36 | Usually 'git-gc' runs very quickly while providing good disk |
Junio C Hamano | 679d22d | 2007-06-02 21:13:44 | [diff] [blame] | 37 | space utilization and performance. This option will cause |
Junio C Hamano | ba4b928 | 2008-07-06 05:20:31 | [diff] [blame] | 38 | 'git-gc' to more aggressively optimize the repository at the expense |
Junio C Hamano | f2ce297 | 2007-05-20 19:12:09 | [diff] [blame] | 39 | of taking much more time. The effects of this optimization are |
Junio C Hamano | 679d22d | 2007-06-02 21:13:44 | [diff] [blame] | 40 | persistent, so this option only needs to be used occasionally; every |
Junio C Hamano | f2ce297 | 2007-05-20 19:12:09 | [diff] [blame] | 41 | few hundred changesets or so. |
Junio C Hamano | f65d928 | 2007-01-22 09:00:13 | [diff] [blame] | 42 | |
Junio C Hamano | 1b50ce9 | 2007-10-03 12:05:53 | [diff] [blame] | 43 | --auto:: |
Junio C Hamano | ba4b928 | 2008-07-06 05:20:31 | [diff] [blame] | 44 | With this option, 'git-gc' checks whether any housekeeping is |
Junio C Hamano | 764a667 | 2007-10-23 01:23:31 | [diff] [blame] | 45 | required; if not, it exits without performing any work. |
| 46 | Some git commands run `git gc --auto` after performing |
| 47 | operations that could create many loose objects. |
| 48 | + |
| 49 | Housekeeping is required if there are too many loose objects or |
| 50 | too many packs in the repository. If the number of loose objects |
| 51 | exceeds the value of the `gc.auto` configuration variable, then |
| 52 | all loose objects are combined into a single pack using |
Junio C Hamano | ba4b928 | 2008-07-06 05:20:31 | [diff] [blame] | 53 | 'git-repack -d -l'. Setting the value of `gc.auto` to 0 |
Junio C Hamano | 764a667 | 2007-10-23 01:23:31 | [diff] [blame] | 54 | disables automatic packing of loose objects. |
| 55 | + |
| 56 | If the number of packs exceeds the value of `gc.autopacklimit`, |
| 57 | then existing packs (except those marked with a `.keep` file) |
| 58 | are consolidated into a single pack by using the `-A` option of |
Junio C Hamano | ba4b928 | 2008-07-06 05:20:31 | [diff] [blame] | 59 | 'git-repack'. Setting `gc.autopacklimit` to 0 disables |
Junio C Hamano | 764a667 | 2007-10-23 01:23:31 | [diff] [blame] | 60 | automatic consolidation of packs. |
Junio C Hamano | 1b50ce9 | 2007-10-03 12:05:53 | [diff] [blame] | 61 | |
Junio C Hamano | 69a9858 | 2008-03-01 18:42:18 | [diff] [blame] | 62 | --quiet:: |
| 63 | Suppress all progress reports. |
| 64 | |
Junio C Hamano | 5229946 | 2006-12-28 00:59:38 | [diff] [blame] | 65 | Configuration |
| 66 | ------------- |
| 67 | |
| 68 | The optional configuration variable 'gc.reflogExpire' can be |
| 69 | set to indicate how long historical entries within each branch's |
| 70 | reflog should remain available in this repository. The setting is |
| 71 | expressed as a length of time, for example '90 days' or '3 months'. |
| 72 | It defaults to '90 days'. |
| 73 | |
| 74 | The optional configuration variable 'gc.reflogExpireUnreachable' |
| 75 | can be set to indicate how long historical reflog entries which |
| 76 | are not part of the current branch should remain available in |
| 77 | this repository. These types of entries are generally created as |
| 78 | a result of using `git commit \--amend` or `git rebase` and are the |
Junio C Hamano | f9771f6 | 2007-01-17 17:42:30 | [diff] [blame] | 79 | commits prior to the amend or rebase occurring. Since these changes |
Junio C Hamano | 5229946 | 2006-12-28 00:59:38 | [diff] [blame] | 80 | are not part of the current project most users will want to expire |
| 81 | them sooner. This option defaults to '30 days'. |
| 82 | |
| 83 | The optional configuration variable 'gc.rerereresolved' indicates |
| 84 | how long records of conflicted merge you resolved earlier are |
| 85 | kept. This defaults to 60 days. |
| 86 | |
| 87 | The optional configuration variable 'gc.rerereunresolved' indicates |
| 88 | how long records of conflicted merge you have not resolved are |
| 89 | kept. This defaults to 15 days. |
| 90 | |
Junio C Hamano | 9d52e57 | 2007-02-13 23:48:20 | [diff] [blame] | 91 | The optional configuration variable 'gc.packrefs' determines if |
Junio C Hamano | ba4b928 | 2008-07-06 05:20:31 | [diff] [blame] | 92 | 'git-gc' runs 'git-pack-refs'. This can be set to "nobare" to enable |
Junio C Hamano | e77b015 | 2008-01-12 06:44:17 | [diff] [blame] | 93 | it within all non-bare repos or it can be set to a boolean value. |
| 94 | This defaults to true. |
Junio C Hamano | 5229946 | 2006-12-28 00:59:38 | [diff] [blame] | 95 | |
Junio C Hamano | f2ce297 | 2007-05-20 19:12:09 | [diff] [blame] | 96 | The optional configuration variable 'gc.aggressiveWindow' controls how |
| 97 | much time is spent optimizing the delta compression of the objects in |
| 98 | the repository when the --aggressive option is specified. The larger |
| 99 | the value, the more time is spent optimizing the delta compression. See |
Junio C Hamano | 35738e8 | 2008-01-07 07:55:46 | [diff] [blame] | 100 | the documentation for the --window' option in linkgit:git-repack[1] for |
Junio C Hamano | f2ce297 | 2007-05-20 19:12:09 | [diff] [blame] | 101 | more details. This defaults to 10. |
| 102 | |
Junio C Hamano | 09a926d | 2008-03-13 07:55:29 | [diff] [blame] | 103 | The optional configuration variable 'gc.pruneExpire' controls how old |
| 104 | the unreferenced loose objects have to be before they are pruned. The |
| 105 | default is "2 weeks ago". |
| 106 | |
Junio C Hamano | 2f102bb | 2008-04-26 02:23:37 | [diff] [blame] | 107 | |
| 108 | Notes |
| 109 | ----- |
| 110 | |
Junio C Hamano | ba4b928 | 2008-07-06 05:20:31 | [diff] [blame] | 111 | 'git-gc' tries very hard to be safe about the garbage it collects. In |
Junio C Hamano | 2f102bb | 2008-04-26 02:23:37 | [diff] [blame] | 112 | particular, it will keep not only objects referenced by your current set |
| 113 | of branches and tags, but also objects referenced by the index, remote |
Junio C Hamano | ba4b928 | 2008-07-06 05:20:31 | [diff] [blame] | 114 | tracking branches, refs saved by 'git-filter-branch' in |
Junio C Hamano | 2f102bb | 2008-04-26 02:23:37 | [diff] [blame] | 115 | refs/original/, or reflogs (which may references commits in branches |
| 116 | that were later amended or rewound). |
| 117 | |
| 118 | If you are expecting some objects to be collected and they aren't, check |
| 119 | all of those locations and decide whether it makes sense in your case to |
| 120 | remove those references. |
| 121 | |
Junio C Hamano | 9049d91 | 2008-05-29 02:09:50 | [diff] [blame] | 122 | SEE ALSO |
Junio C Hamano | 5229946 | 2006-12-28 00:59:38 | [diff] [blame] | 123 | -------- |
Junio C Hamano | 35738e8 | 2008-01-07 07:55:46 | [diff] [blame] | 124 | linkgit:git-prune[1] |
| 125 | linkgit:git-reflog[1] |
| 126 | linkgit:git-repack[1] |
| 127 | linkgit:git-rerere[1] |
Junio C Hamano | 5229946 | 2006-12-28 00:59:38 | [diff] [blame] | 128 | |
| 129 | Author |
| 130 | ------ |
| 131 | Written by Shawn O. Pearce <spearce@spearce.org> |
| 132 | |
| 133 | GIT |
| 134 | --- |
Junio C Hamano | f7c042d | 2008-06-06 22:50:53 | [diff] [blame] | 135 | Part of the linkgit:git[1] suite |