Tobias Ulmer <tobiasu@xxxxxxxx> writes: > When --quiet is requested, gc --auto should not display messages unless > there is an error. > > Signed-off-by: Tobias Ulmer <tobiasu@xxxxxxxx> > --- > builtin/gc.c | 4 +--- > 1 files changed, 1 insertions(+), 3 deletions(-) > > diff --git a/builtin/gc.c b/builtin/gc.c > index 6d46608..6be6c8d 100644 > --- a/builtin/gc.c > +++ b/builtin/gc.c > @@ -217,9 +217,7 @@ int cmd_gc(int argc, const char **argv, const char *prefix) > */ > if (!need_to_gc()) > return 0; > - if (quiet) > - fprintf(stderr, _("Auto packing the repository for optimum performance.\n")); > - else > + if (!quiet) > fprintf(stderr, > _("Auto packing the repository for optimum performance. You may also\n" > "run \"git gc\" manually. See " This patch will break t5400; the test needs to be updated in the same patch to check auto-gc kicks in when it should in some other way. The test currently _relies_ on this message to see the gc is triggered. -- To unsubscribe from this list: send the line "unsubscribe git" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html