diff options
-rw-r--r-- | builtin-gc.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/builtin-gc.c b/builtin-gc.c index f99b212ca4..3a2ca4f901 100644 --- a/builtin-gc.c +++ b/builtin-gc.c @@ -206,9 +206,9 @@ int cmd_gc(int argc, const char **argv, const char *prefix) if (!need_to_gc()) return 0; fprintf(stderr, "Packing your repository for optimum " - "performance. If you would rather run\n" - "\"git gc\" by hand, run \"git config gc.auto 0\" " - "to disable automatic cleanup.\n"); + "performance. You may also\n" + "run \"git gc\" manually. See " + "\"git help gc\" for more information.\n"); } else { /* * Use safer (for shared repos) "-A" option to |