summaryrefslogtreecommitdiff
path: root/builtin-gc.c
diff options
context:
space:
mode:
authorFrank Lichtenheld <frank@lichtenheld.de>2008-02-29 21:53:39 (GMT)
committerJunio C Hamano <gitster@pobox.com>2008-03-01 09:09:06 (GMT)
commita0c14cbb2eebaa86b57ef797d0a03b836a817dd5 (patch)
tree088dc0f8d30dd55425677bb163cf5cae5f4e7d59 /builtin-gc.c
parentdfb9a34ababeee98a9f241636c1fe6e98c754f7a (diff)
downloadgit-a0c14cbb2eebaa86b57ef797d0a03b836a817dd5.zip
git-a0c14cbb2eebaa86b57ef797d0a03b836a817dd5.tar.gz
git-a0c14cbb2eebaa86b57ef797d0a03b836a817dd5.tar.bz2
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 'builtin-gc.c')
-rw-r--r--builtin-gc.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/builtin-gc.c b/builtin-gc.c
index ad4a75e..045bf0e 100644
--- a/builtin-gc.c
+++ b/builtin-gc.c
@@ -172,12 +172,14 @@ int cmd_gc(int argc, const char **argv, const char *prefix)
int prune = 0;
int aggressive = 0;
int auto_gc = 0;
+ int quiet = 0;
char buf[80];
struct option builtin_gc_options[] = {
OPT_BOOLEAN(0, "prune", &prune, "prune unreferenced objects"),
OPT_BOOLEAN(0, "aggressive", &aggressive, "be more thorough (increased runtime)"),
OPT_BOOLEAN(0, "auto", &auto_gc, "enable auto-gc mode"),
+ OPT_BOOLEAN('q', "quiet", &quiet, "suppress progress reports"),
OPT_END()
};
@@ -197,6 +199,8 @@ int cmd_gc(int argc, const char **argv, const char *prefix)
append_option(argv_repack, buf, MAX_ADD);
}
}
+ if (quiet)
+ append_option(argv_repack, "-q", MAX_ADD);
if (auto_gc) {
/*