diff options
author | Junio C Hamano <gitster@pobox.com> | 2007-09-17 00:39:52 -0700 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2007-09-17 23:12:15 -0700 |
commit | e9831e83e063844b90cf9e525d0003715dd8b395 (patch) | |
tree | c795029c5b03008cfe4addcceaaaed9fd458e6fd /Documentation/config.txt | |
parent | caf9de2f46471dc25180bf519c07537c00a68dda (diff) | |
download | git-e9831e83e063844b90cf9e525d0003715dd8b395.tar.gz |
git-gc --auto: add documentation.
This documents the auto-packing of loose objects performed by
git-gc --auto.
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'Documentation/config.txt')
-rw-r--r-- | Documentation/config.txt | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/Documentation/config.txt b/Documentation/config.txt index 866e0534b8..6b6553d9da 100644 --- a/Documentation/config.txt +++ b/Documentation/config.txt @@ -439,6 +439,13 @@ gc.aggressiveWindow:: algorithm used by 'git gc --aggressive'. This defaults to 10. +gc.auto:: + When there are approximately more than this many loose + objects in the repository, `git gc --auto` will pack them. + Some Porcelain commands use this command to perform a + light-weight garbage collection from time to time. Setting + this to 0 disables it. + gc.packrefs:: `git gc` does not run `git pack-refs` in a bare repository by default so that older dumb-transport clients can still fetch |