diff options
author | Junio C Hamano <gitster@pobox.com> | 2011-04-05 10:44:11 -0700 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2011-04-05 20:25:49 -0700 |
commit | 15366280c27e922ace0ba7d33cb3504dc59d742e (patch) | |
tree | fe512d5fabebbb2257b818e9cd3a530eb163e599 /environment.c | |
parent | 7ed863a85a6ce2c4ac4476848310b8f917ab41f9 (diff) | |
download | git-15366280c27e922ace0ba7d33cb3504dc59d742e.tar.gz |
Teach core.bigfilethreashold to pack-objects
The pack-objects command should take notice of the object file and
refrain from attempting to delta large ones, to be consistent with
the fast-import command.
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'environment.c')
-rw-r--r-- | environment.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/environment.c b/environment.c index 9564475f42..8557e84ff6 100644 --- a/environment.c +++ b/environment.c @@ -35,6 +35,7 @@ int fsync_object_files; size_t packed_git_window_size = DEFAULT_PACKED_GIT_WINDOW_SIZE; size_t packed_git_limit = DEFAULT_PACKED_GIT_LIMIT; size_t delta_base_cache_limit = 16 * 1024 * 1024; +unsigned long big_file_threshold = 512 * 1024 * 1024; const char *pager_program; int pager_use_color = 1; const char *editor_program; |