From 9e7d501990a9c63db264f3185fc311f446196427 Mon Sep 17 00:00:00 2001 From: Brandon Casey Date: Fri, 9 May 2008 23:01:57 -0500 Subject: [PATCH] builtin-gc.c: deprecate --prune, it now really has no effect --- builtin-gc.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/builtin-gc.c b/builtin-gc.c index 6db2f513b7..48f7d95f97 100644 --- a/builtin-gc.c +++ b/builtin-gc.c @@ -219,7 +219,7 @@ int cmd_gc(int argc, const char **argv, const char *prefix) char buf[80]; struct option builtin_gc_options[] = { - OPT_BOOLEAN(0, "prune", &prune, "prune unreferenced objects"), + OPT_BOOLEAN(0, "prune", &prune, "prune unreferenced objects (deprecated)"), 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"), @@ -249,7 +249,6 @@ int cmd_gc(int argc, const char **argv, const char *prefix) /* * Auto-gc should be least intrusive as possible. */ - prune = 0; if (!need_to_gc()) return 0; fprintf(stderr, "Auto packing your repository for optimum " -- 2.11.4.GIT