diff options
author | Johannes Schindelin <Johannes.Schindelin@gmx.de> | 2009-02-14 23:10:10 +0100 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2009-02-14 21:14:07 -0800 |
commit | 58e9d9d472ff4dbc6cfbf7459878778c739395eb (patch) | |
tree | 6a09b2564916644ee5f0a18cf70d51936fe6802b /Documentation | |
parent | e9cc02f0e41fd5d2f51e3c3f2b4f8cfa9e434432 (diff) | |
download | git-58e9d9d472ff4dbc6cfbf7459878778c739395eb.tar.gz |
gc: make --prune useful again by accepting an optional parameter
With this patch, "git gc --no-prune" will not prune any loose (and
dangling) object, and "git gc --prune=5.minutes.ago" will prune
all loose objects older than 5 minutes.
This patch benefitted from suggestions by Thomas Rast and Jan Krï¿œger.
Signed-off-by: Johannes Schindelin <johannes.schindelin@gmx.de>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'Documentation')
-rw-r--r-- | Documentation/git-gc.txt | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/Documentation/git-gc.txt b/Documentation/git-gc.txt index 7086eea74a..b292e9843a 100644 --- a/Documentation/git-gc.txt +++ b/Documentation/git-gc.txt @@ -8,7 +8,7 @@ git-gc - Cleanup unnecessary files and optimize the local repository SYNOPSIS -------- -'git gc' [--aggressive] [--auto] [--quiet] +'git gc' [--aggressive] [--auto] [--quiet] [--prune=<date> | --no-prune] DESCRIPTION ----------- @@ -59,6 +59,14 @@ are consolidated into a single pack by using the `-A` option of 'git-repack'. Setting `gc.autopacklimit` to 0 disables automatic consolidation of packs. +--prune=<date>:: + Prune loose objects older than date (default is 2 weeks ago, + overrideable by the config variable `gc.pruneExpire`). This + option is on by default. + +--no-prune:: + Do not prune any loose objects. + --quiet:: Suppress all progress reports. |