diff options
author | Junio C Hamano <gitster@pobox.com> | 2011-05-04 23:57:38 +0200 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2011-05-04 23:57:38 +0200 |
commit | f28d2e33c64819d0425c426cd2c4511634096a40 (patch) | |
tree | 13d36e58177d1723b4759db99992b4ee03473216 /config.c | |
parent | Merge branch 'mg/reflog-with-options' into maint (diff) | |
parent | Teach core.bigfilethreashold to pack-objects (diff) | |
download | git-f28d2e33c64819d0425c426cd2c4511634096a40.tar.xz git-f28d2e33c64819d0425c426cd2c4511634096a40.zip |
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; |