2006-12-27 08:17:59 +01:00
|
|
|
git-gc(1)
|
|
|
|
=========
|
|
|
|
|
|
|
|
NAME
|
|
|
|
----
|
|
|
|
git-gc - Cleanup unnecessary files and optimize the local repository
|
|
|
|
|
|
|
|
|
|
|
|
SYNOPSIS
|
|
|
|
--------
|
2011-07-02 04:38:26 +02:00
|
|
|
[verse]
|
2009-02-14 23:10:10 +01:00
|
|
|
'git gc' [--aggressive] [--auto] [--quiet] [--prune=<date> | --no-prune]
|
2006-12-27 08:17:59 +01:00
|
|
|
|
|
|
|
DESCRIPTION
|
|
|
|
-----------
|
|
|
|
Runs a number of housekeeping tasks within the current repository,
|
|
|
|
such as compressing file revisions (to reduce disk space and increase
|
|
|
|
performance) and removing unreachable objects which may have been
|
2010-01-10 00:33:00 +01:00
|
|
|
created from prior invocations of 'git add'.
|
2006-12-27 08:17:59 +01:00
|
|
|
|
|
|
|
Users are encouraged to run this task on a regular basis within
|
|
|
|
each repository to maintain good disk space utilization and good
|
2008-03-19 22:06:11 +01:00
|
|
|
operating performance.
|
|
|
|
|
2010-01-10 00:33:00 +01:00
|
|
|
Some git commands may automatically run 'git gc'; see the `--auto` flag
|
2008-03-19 22:06:11 +01:00
|
|
|
below for details. If you know what you're doing and all you want is to
|
|
|
|
disable this behavior permanently without further considerations, just do:
|
|
|
|
|
|
|
|
----------------------
|
|
|
|
$ git config --global gc.auto 0
|
|
|
|
----------------------
|
2006-12-27 08:17:59 +01:00
|
|
|
|
2007-01-22 08:28:28 +01:00
|
|
|
OPTIONS
|
|
|
|
-------
|
|
|
|
|
2007-05-09 21:48:39 +02:00
|
|
|
--aggressive::
|
2010-01-10 00:33:00 +01:00
|
|
|
Usually 'git gc' runs very quickly while providing good disk
|
2007-06-01 01:00:48 +02:00
|
|
|
space utilization and performance. This option will cause
|
2010-01-10 00:33:00 +01:00
|
|
|
'git gc' to more aggressively optimize the repository at the expense
|
2007-05-09 21:48:39 +02:00
|
|
|
of taking much more time. The effects of this optimization are
|
2007-06-01 01:00:48 +02:00
|
|
|
persistent, so this option only needs to be used occasionally; every
|
2007-05-09 21:48:39 +02:00
|
|
|
few hundred changesets or so.
|
2007-09-17 09:39:52 +02:00
|
|
|
|
|
|
|
--auto::
|
2010-01-10 00:33:00 +01:00
|
|
|
With this option, 'git gc' checks whether any housekeeping is
|
2007-10-19 04:05:10 +02:00
|
|
|
required; if not, it exits without performing any work.
|
|
|
|
Some git commands run `git gc --auto` after performing
|
|
|
|
operations that could create many loose objects.
|
|
|
|
+
|
|
|
|
Housekeeping is required if there are too many loose objects or
|
|
|
|
too many packs in the repository. If the number of loose objects
|
|
|
|
exceeds the value of the `gc.auto` configuration variable, then
|
|
|
|
all loose objects are combined into a single pack using
|
2010-01-10 00:33:00 +01:00
|
|
|
`git repack -d -l`. Setting the value of `gc.auto` to 0
|
2007-10-19 04:05:10 +02:00
|
|
|
disables automatic packing of loose objects.
|
|
|
|
+
|
|
|
|
If the number of packs exceeds the value of `gc.autopacklimit`,
|
|
|
|
then existing packs (except those marked with a `.keep` file)
|
|
|
|
are consolidated into a single pack by using the `-A` option of
|
2010-01-10 00:33:00 +01:00
|
|
|
'git repack'. Setting `gc.autopacklimit` to 0 disables
|
2007-10-19 04:05:10 +02:00
|
|
|
automatic consolidation of packs.
|
2007-01-22 08:28:28 +01:00
|
|
|
|
2009-02-14 23:10:10 +01:00
|
|
|
--prune=<date>::
|
|
|
|
Prune loose objects older than date (default is 2 weeks ago,
|
2009-08-28 05:18:49 +02:00
|
|
|
overridable by the config variable `gc.pruneExpire`). This
|
2009-02-14 23:10:10 +01:00
|
|
|
option is on by default.
|
|
|
|
|
|
|
|
--no-prune::
|
|
|
|
Do not prune any loose objects.
|
|
|
|
|
2008-02-29 22:53:39 +01:00
|
|
|
--quiet::
|
|
|
|
Suppress all progress reports.
|
|
|
|
|
2006-12-27 08:17:59 +01:00
|
|
|
Configuration
|
|
|
|
-------------
|
|
|
|
|
|
|
|
The optional configuration variable 'gc.reflogExpire' can be
|
|
|
|
set to indicate how long historical entries within each branch's
|
|
|
|
reflog should remain available in this repository. The setting is
|
|
|
|
expressed as a length of time, for example '90 days' or '3 months'.
|
|
|
|
It defaults to '90 days'.
|
|
|
|
|
|
|
|
The optional configuration variable 'gc.reflogExpireUnreachable'
|
|
|
|
can be set to indicate how long historical reflog entries which
|
|
|
|
are not part of the current branch should remain available in
|
|
|
|
this repository. These types of entries are generally created as
|
|
|
|
a result of using `git commit \--amend` or `git rebase` and are the
|
2007-01-17 16:32:41 +01:00
|
|
|
commits prior to the amend or rebase occurring. Since these changes
|
2006-12-27 08:17:59 +01:00
|
|
|
are not part of the current project most users will want to expire
|
|
|
|
them sooner. This option defaults to '30 days'.
|
|
|
|
|
2010-04-14 22:12:34 +02:00
|
|
|
The above two configuration variables can be given to a pattern. For
|
2010-11-02 16:31:21 +01:00
|
|
|
example, this sets non-default expiry values only to remote-tracking
|
2010-04-14 22:12:34 +02:00
|
|
|
branches:
|
|
|
|
|
|
|
|
------------
|
|
|
|
[gc "refs/remotes/*"]
|
|
|
|
reflogExpire = never
|
|
|
|
reflogexpireUnreachable = 3 days
|
|
|
|
------------
|
|
|
|
|
2006-12-27 08:17:59 +01:00
|
|
|
The optional configuration variable 'gc.rerereresolved' indicates
|
|
|
|
how long records of conflicted merge you resolved earlier are
|
|
|
|
kept. This defaults to 60 days.
|
|
|
|
|
|
|
|
The optional configuration variable 'gc.rerereunresolved' indicates
|
|
|
|
how long records of conflicted merge you have not resolved are
|
|
|
|
kept. This defaults to 15 days.
|
|
|
|
|
2007-02-13 14:01:42 +01:00
|
|
|
The optional configuration variable 'gc.packrefs' determines if
|
2010-12-16 08:16:49 +01:00
|
|
|
'git gc' runs 'git pack-refs'. This can be set to "notbare" to enable
|
2008-01-09 17:05:16 +01:00
|
|
|
it within all non-bare repos or it can be set to a boolean value.
|
|
|
|
This defaults to true.
|
2006-12-27 08:17:59 +01:00
|
|
|
|
2007-05-09 21:48:39 +02:00
|
|
|
The optional configuration variable 'gc.aggressiveWindow' controls how
|
|
|
|
much time is spent optimizing the delta compression of the objects in
|
|
|
|
the repository when the --aggressive option is specified. The larger
|
|
|
|
the value, the more time is spent optimizing the delta compression. See
|
2007-12-29 07:20:38 +01:00
|
|
|
the documentation for the --window' option in linkgit:git-repack[1] for
|
2009-09-28 16:56:00 +02:00
|
|
|
more details. This defaults to 250.
|
2007-05-09 21:48:39 +02:00
|
|
|
|
gc: call "prune --expire 2.weeks.ago" by default
The only reason we did not call "prune" in git-gc was that it is an
inherently dangerous operation: if there is a commit going on, you will
prune loose objects that were just created, and are, in fact, needed by the
commit object just about to be created.
Since it is dangerous, we told users so. That led to many users not even
daring to run it when it was actually safe. Besides, they are users, and
should not have to remember such details as when to call git-gc with
--prune, or to call git-prune directly.
Of course, the consequence was that "git gc --auto" gets triggered much
more often than we would like, since unreferenced loose objects (such as
left-overs from a rebase or a reset --hard) were never pruned.
Alas, git-prune recently learnt the option --expire <minimum-age>, which
makes it a much safer operation. This allows us to call prune from git-gc,
with a grace period of 2 weeks for the unreferenced loose objects (this
value was determined in a discussion on the git list as a safe one).
If you want to override this grace period, just set the config variable
gc.pruneExpire to a different value; an example would be
[gc]
pruneExpire = 6.months.ago
or even "never", if you feel really paranoid.
Note that this new behaviour makes "--prune" be a no-op.
While adding a test to t5304-prune.sh (since it really tests the implicit
call to "prune"), also the original test for "prune --expire" was moved
there from t1410-reflog.sh, where it did not belong.
Signed-off-by: Johannes Schindelin <johannes.schindelin@gmx.de>
2008-03-12 21:55:47 +01:00
|
|
|
The optional configuration variable 'gc.pruneExpire' controls how old
|
|
|
|
the unreferenced loose objects have to be before they are pruned. The
|
|
|
|
default is "2 weeks ago".
|
|
|
|
|
2008-04-24 03:28:36 +02:00
|
|
|
|
|
|
|
Notes
|
|
|
|
-----
|
|
|
|
|
2010-01-10 00:33:00 +01:00
|
|
|
'git gc' tries very hard to be safe about the garbage it collects. In
|
2008-04-24 03:28:36 +02:00
|
|
|
particular, it will keep not only objects referenced by your current set
|
2010-11-02 16:31:21 +01:00
|
|
|
of branches and tags, but also objects referenced by the index,
|
|
|
|
remote-tracking branches, refs saved by 'git filter-branch' in
|
2009-10-20 07:22:25 +02:00
|
|
|
refs/original/, or reflogs (which may reference commits in branches
|
2008-04-24 03:28:36 +02:00
|
|
|
that were later amended or rewound).
|
|
|
|
|
|
|
|
If you are expecting some objects to be collected and they aren't, check
|
|
|
|
all of those locations and decide whether it makes sense in your case to
|
|
|
|
remove those references.
|
|
|
|
|
2010-06-30 22:41:27 +02:00
|
|
|
HOOKS
|
|
|
|
-----
|
|
|
|
|
|
|
|
The 'git gc --auto' command will run the 'pre-auto-gc' hook. See
|
|
|
|
linkgit:githooks[5] for more information.
|
|
|
|
|
|
|
|
|
2008-05-29 01:55:27 +02:00
|
|
|
SEE ALSO
|
2006-12-27 08:17:59 +01:00
|
|
|
--------
|
2007-12-29 07:20:38 +01:00
|
|
|
linkgit:git-prune[1]
|
|
|
|
linkgit:git-reflog[1]
|
|
|
|
linkgit:git-repack[1]
|
|
|
|
linkgit:git-rerere[1]
|
2006-12-27 08:17:59 +01:00
|
|
|
|
|
|
|
GIT
|
|
|
|
---
|
2008-06-06 09:07:32 +02:00
|
|
|
Part of the linkgit:git[1] suite
|