Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.kernel.org/pub/scm/git/git.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJunio C Hamano <gitster@pobox.com>2011-08-06 01:54:57 +0400
committerJunio C Hamano <gitster@pobox.com>2011-08-06 01:54:57 +0400
commit96790ca02935791b302cd65a4d092f4cdf5cd21e (patch)
tree450e39507c2024160acf6d85fc965c7cfa1f21f6 /config.c
parent5d2fc9135a35284176e99708b9b6f32c9e6eb7a2 (diff)
parent1b4bb16b9ec331c91e28d2e3e7dee5070534b6a2 (diff)
Merge branch 'jc/pack-order-tweak'
* jc/pack-order-tweak: pack-objects: optimize "recency order" core: log offset pack data accesses happened
Diffstat (limited to 'config.c')
-rw-r--r--config.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/config.c b/config.c
index e42c59b190..4183f80262 100644
--- a/config.c
+++ b/config.c
@@ -576,6 +576,9 @@ static int git_default_core_config(const char *var, const char *value)
return 0;
}
+ if (!strcmp(var, "core.logpackaccess"))
+ return git_config_string(&log_pack_access, var, value);
+
if (!strcmp(var, "core.autocrlf")) {
if (value && !strcasecmp(value, "input")) {
if (core_eol == EOL_CRLF)