diff options
author | Junio C Hamano <gitster@pobox.com> | 2016-09-22 00:15:29 +0200 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2016-09-22 00:15:30 +0200 |
commit | 0952ca8a959ec3ecd8e929592249732e619416e3 (patch) | |
tree | 0cdb20f59dd945a0b14c3234ffeb9d71443bf3fb /builtin/gc.c | |
parent | Merge branch 'jk/rebase-i-drop-ident-check' (diff) | |
parent | gc: default aggressive depth to 50 (diff) | |
download | git-0952ca8a959ec3ecd8e929592249732e619416e3.tar.xz git-0952ca8a959ec3ecd8e929592249732e619416e3.zip |
Merge branch 'jk/reduce-gc-aggressive-depth'
"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.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/builtin/gc.c b/builtin/gc.c index 332bcf7e7a..069950d0b4 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; |