diff options
author | Theodore Ts'o <tytso@mit.edu> | 2007-05-08 09:28:26 -0400 |
---|---|---|
committer | Junio C Hamano <junkio@cox.net> | 2007-05-08 22:47:17 -0700 |
commit | 618e613a706638a7a1fb5c87cd418158c9b2687c (patch) | |
tree | c2946064523ee60e68e2bf43cea9340d4674cf03 /builtin-pack-objects.c | |
parent | 842aaf93238377976111fc801aaacbf8a491db33 (diff) | |
download | git-618e613a706638a7a1fb5c87cd418158c9b2687c.tar.gz |
Increase pack.depth default to 50
Signed-off-by: "Theodore Ts'o" <tytso@mit.edu>
Signed-off-by: Junio C Hamano <junkio@cox.net>
Diffstat (limited to 'builtin-pack-objects.c')
-rw-r--r-- | builtin-pack-objects.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/builtin-pack-objects.c b/builtin-pack-objects.c index 79d9228925..966f843e43 100644 --- a/builtin-pack-objects.c +++ b/builtin-pack-objects.c @@ -64,7 +64,7 @@ static char tmpname[PATH_MAX]; static unsigned char pack_file_sha1[20]; static int progress = 1; static int window = 10; -static int depth = 10; +static int depth = 50; static int pack_to_stdout; static int num_preferred_base; static struct progress progress_state; |