docs/git-gc: fix default value for `--aggressiveDepth`
In commit 07e7dbf0d (gc: default aggressive depth to 50, 2016-08-11), the default aggressive depth of git-gc has been changed to 50. While git-config(1) has been updated to represent the new default value, git-gc(1) still mentions the old value. This patch fixes it. Signed-off-by: Patrick Steinhardt <ps@pks.im> Reviewed-by: Jeff King <peff@peff.net> Signed-off-by: Junio C Hamano <gitster@pobox.com>
Patrick Steinhardt committed
Feb 24, 2017 at 09:46 UTC
7e82388024504be733ba23c97f884148870fe9cc
1 file changed
+1
-1
Documentation/git-gc.txt
+1
-1
@@ -127,7 +127,7 @@ the documentation for the --window' option in linkgit:git-repack[1] for
127
more details. This defaults to 250.
128
129
Similarly, the optional configuration variable `gc.aggressiveDepth`
130
-controls --depth option in linkgit:git-repack[1]. This defaults to 250.
130
+controls --depth option in linkgit:git-repack[1]. This defaults to 50.
131
132
The optional configuration variable `gc.pruneExpire` controls how old
133
the unreferenced loose objects have to be before they are pruned. The