From a0c14cbb2eebaa86b57ef797d0a03b836a817dd5 Mon Sep 17 00:00:00 2001 From: Frank Lichtenheld Date: Fri, 29 Feb 2008 22:53:39 +0100 Subject: gc: Add --quiet option Pass -q option to git-repack. Signed-off-by: Frank Lichtenheld Signed-off-by: Junio C Hamano --- builtin-gc.c | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'builtin-gc.c') diff --git a/builtin-gc.c b/builtin-gc.c index ad4a75eedd..045bf0e487 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) { /* -- cgit v1.2.3