aboutsummaryrefslogtreecommitdiff
path: root/builtin/gc.c
diff options
context:
space:
mode:
authorJunio C Hamano <gitster@pobox.com>2016-09-29 16:49:42 -0700
committerJunio C Hamano <gitster@pobox.com>2016-09-29 16:49:42 -0700
commiteb293ac8d62b05ce15b837759a5e660617212a37 (patch)
treeb2bc33be22e824239c7d0a92283a7a28a75508f6 /builtin/gc.c
parente25e6f3947403ed87cc016b7dc2c0692a5b6c2d2 (diff)
parent07e7dbf0db05a550a92a6a5a8977ac47efa7b794 (diff)
downloadgit-eb293ac8d62b05ce15b837759a5e660617212a37.tar.gz
git-eb293ac8d62b05ce15b837759a5e660617212a37.tar.xz
Merge branch 'jk/reduce-gc-aggressive-depth' into maint
"git gc --aggressive" used to limit the delta-chain length to 250, which is way too deep for gaining additional space savings and is detrimental for runtime performance. The limit has been reduced to 50. * jk/reduce-gc-aggressive-depth: gc: default aggressive depth to 50
Diffstat (limited to 'builtin/gc.c')
-rw-r--r--builtin/gc.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/builtin/gc.c b/builtin/gc.c
index 332bcf7e7..069950d0b 100644
--- a/builtin/gc.c
+++ b/builtin/gc.c
@@ -28,7 +28,7 @@ static const char * const builtin_gc_usage[] = {
static int pack_refs = 1;
static int prune_reflogs = 1;
-static int aggressive_depth = 250;
+static int aggressive_depth = 50;
static int aggressive_window = 250;
static int gc_auto_threshold = 6700;
static int gc_auto_pack_limit = 50;