Linux "git-gc" Command Line Options and Examples
Cleanup unnecessary files and optimize the local repository

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 created from prior invocations of git add.


Usage:

git gc [--aggressive] [--auto] [--quiet] [--prune= | --no-prune] [--force]






Command Line Options:

--aggressive
Usually git gc runs very quickly while providing good disk space utilization and performance. This option will cause git gc tomore aggressively optimize the repository at the expense of taking much more time. The effects of this optimization arepersistent, so this option only needs to be used occasionally; every few hundred changesets or so.
git-gc --aggressive ...
--auto
With this option, git gc checks whether any housekeeping is required; if not, it exits without performing any work. Some gitcommands 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 objectsexceeds the value of the gc.auto configuration variable, then all loose objects are combined into a single pack using git repack
git-gc --auto ...
-d
If the number of packs exceeds the value of gc.autoPackLimit, then existing packs (except those marked with a .keep file) areconsolidated into a single pack by using the -A option of git repack. Setting gc.autoPackLimit to 0 disables automaticconsolidation of packs.
git-gc -d ...
--prune
Prune loose objects older than date (default is 2 weeks ago, overridable by the config variable gc.pruneExpire). --prune=allprunes loose objects regardless of their age and increases the risk of corruption if another process is writing to the repositoryconcurrently; see "NOTES" below. --prune is on by default.
git-gc --prune ...
--no-prune
Do not prune any loose objects.
git-gc --no-prune ...
--quiet
Suppress all progress reports.
git-gc --quiet ...
--force
Force git gc to run even if there may be another git gc instance running on this repository.CONFIGURATIONThe optional configuration variable gc.reflogExpire can be set to indicate how long historical entries within each branch’s reflogshould remain available in this repository. The setting is expressed as a length of time, for example 90 days or 3 months. Itdefaults to 90 days.The optional configuration variable gc.reflogExpireUnreachable can be set to indicate how long historical reflog entries which arenot part of the current branch should remain available in this repository. These types of entries are generally created as a resultof using git commit --amend or git rebase and are the commits prior to the amend or rebase occurring. Since these changes are notpart of the current project most users will want to expire them sooner. This option defaults to 30 days.The above two configuration variables can be given to a pattern. For example, this sets non-default expiry values only toremote-tracking branches:[gc "refs/remotes/*"]reflogExpire = neverreflogExpireUnreachable = 3 daysThe 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 arekept. This defaults to 15 days.The optional configuration variable gc.packRefs determines if git gc runs git pack-refs. This can be set to "notbare" to enable itwithin all non-bare repos or it can be set to a boolean value. This defaults to true.The optional configuration variable ‘gc.aggressiveWindow` controls how much time is spent optimizing the delta compression of theobjects in the repository when the --aggressive option is specified. The larger the value, the more time is spent optimizing thedelta compression. See the documentation for the --window’ option in git-repack(1) for more details. This defaults to 250.Similarly, the optional configuration variable gc.aggressiveDepth controls --depth option in git-repack(1). This defaults to 50.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".NOTESgit gc tries very hard not to delete objects that are referenced anywhere in your repository. In particular, it will keep not onlyobjects referenced by your current set of branches and tags, but also objects referenced by the index, remote-tracking branches, refssaved by git filter-branch in refs/original/, or reflogs (which may reference commits in branches that were later amended orrewound). If you are expecting some objects to be deleted and they aren’t, check all of those locations and decide whether it makessense in your case to remove those references.On the other hand, when git gc runs concurrently with another process, there is a risk of it deleting an object that the otherprocess is using but hasn’t created a reference to. This may just cause the other process to fail or may corrupt the repository ifthe other process later adds a reference to the deleted object. Git has two features that significantly mitigate this problem:1. Any object with modification time newer than the --prune date is kept, along with everything reachable from it.2. Most operations that add an object to the database update the modification time of the object if it is already present so that #1applies.However, these features fall short of a complete solution, so users who run commands concurrently have to live with some risk ofcorruption (which seems to be low in practice) unless they turn off automatic garbage collection with git config gc.auto 0.HOOKSThe git gc --auto command will run the pre-auto-gc hook. See githooks(5) for more information.
git-gc --force ...