diff options
author | Junio C Hamano <gitster@pobox.com> | 2017-06-22 14:15:23 -0700 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2017-06-22 14:15:23 -0700 |
commit | f77149c2fbf4257ce40bed4f6855182650a50226 (patch) | |
tree | bf93c89930742ecc7d33f30eaf5146f855c547cf /fast-import.c | |
parent | 56585a2caf12934382aee9f625e14dca0ba95ab9 (diff) | |
parent | 4f2220e606a52e891915540523d5d03aaa2dbc8f (diff) | |
download | git-f77149c2fbf4257ce40bed4f6855182650a50226.tar.gz |
Merge branch 'mh/fast-import-raise-default-depth'
"fast-import" uses a default pack chain depth that is consistent
with other parts of the system.
* mh/fast-import-raise-default-depth:
fast-import: increase the default pack depth to 50
Diffstat (limited to 'fast-import.c')
-rw-r--r-- | fast-import.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fast-import.c b/fast-import.c index 9a22fc92c0..fc2b22033b 100644 --- a/fast-import.c +++ b/fast-import.c @@ -280,7 +280,7 @@ struct recent_command { }; /* Configured limits on output */ -static unsigned long max_depth = 10; +static unsigned long max_depth = 50; static off_t max_packsize; static int unpack_limit = 100; static int force_update; |