diff options
author | Junio C Hamano <gitster@pobox.com> | 2011-05-04 14:57:38 -0700 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2011-05-04 14:57:38 -0700 |
commit | f28d2e33c64819d0425c426cd2c4511634096a40 (patch) | |
tree | 13d36e58177d1723b4759db99992b4ee03473216 /config.c | |
parent | f6bfe767149c15b359106cb9f138853be3c14667 (diff) | |
parent | 15366280c27e922ace0ba7d33cb3504dc59d742e (diff) | |
download | git-f28d2e33c64819d0425c426cd2c4511634096a40.tar.gz |
Merge branch 'jc/pack-objects-bigfile' into maint
* jc/pack-objects-bigfile:
Teach core.bigfilethreashold to pack-objects
Diffstat (limited to 'config.c')
-rw-r--r-- | config.c | 6 |
1 files changed, 6 insertions, 0 deletions
@@ -567,6 +567,12 @@ static int git_default_core_config(const char *var, const char *value) return 0; } + if (!strcmp(var, "core.bigfilethreshold")) { + long n = git_config_int(var, value); + big_file_threshold = 0 < n ? n : 0; + return 0; + } + if (!strcmp(var, "core.packedgitlimit")) { packed_git_limit = git_config_int(var, value); return 0; |