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 <junkio@cox.net>2006-07-18 02:10:10 +0400
committerJunio C Hamano <junkio@cox.net>2006-07-26 01:15:48 +0400
commit8e27364128b091e76059229d4f009bc7f869fa9f (patch)
tree057b9699f182904c9e85e153bc10f8117a8941a3
parentceec1361ebbc4613813ba42976503f5e304cfacf (diff)
unpack-objects: read configuration data upon startup.
With this, unpack-objects will write out the loose objects with new-style headers when core.legacyheaders configuration is set to false. One unfortunate thing is that we still need inflate/deflate cycle when unpacking, even for objects in the pack stream that are not deltified, because it is not possible to determine the boundary of objects in the encoded stream cheaply without inflating it first. Signed-off-by: Junio C Hamano <junkio@cox.net>
-rw-r--r--unpack-objects.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/unpack-objects.c b/unpack-objects.c
index 48c1ee7968..b23fe58ce1 100644
--- a/unpack-objects.c
+++ b/unpack-objects.c
@@ -266,6 +266,7 @@ int main(int argc, char **argv)
unsigned char sha1[20];
setup_git_directory();
+ git_config(git_default_config);
quiet = !isatty(2);