diff options
author | Frank Lichtenheld <frank@lichtenheld.de> | 2008-02-29 22:53:39 +0100 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2008-03-01 01:09:06 -0800 |
commit | a0c14cbb2eebaa86b57ef797d0a03b836a817dd5 (patch) | |
tree | 088dc0f8d30dd55425677bb163cf5cae5f4e7d59 /Documentation/git-gc.txt | |
parent | dfb9a34ababeee98a9f241636c1fe6e98c754f7a (diff) | |
download | git-a0c14cbb2eebaa86b57ef797d0a03b836a817dd5.tar.gz git-a0c14cbb2eebaa86b57ef797d0a03b836a817dd5.tar.xz |
gc: Add --quiet option
Pass -q option to git-repack.
Signed-off-by: Frank Lichtenheld <frank@lichtenheld.de>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'Documentation/git-gc.txt')
-rw-r--r-- | Documentation/git-gc.txt | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/Documentation/git-gc.txt b/Documentation/git-gc.txt index 4b2dfefa6..2e7be916a 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' [--prune] [--aggressive] [--auto] +'git-gc' [--prune] [--aggressive] [--auto] [--quiet] DESCRIPTION ----------- @@ -63,6 +63,9 @@ are consolidated into a single pack by using the `-A` option of `git-repack`. Setting `gc.autopacklimit` to 0 disables automatic consolidation of packs. +--quiet:: + Suppress all progress reports. + Configuration ------------- |