summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: 60bb8b1)
raw | patch | inline | side by side (parent: 60bb8b1)
author | Shawn O. Pearce <spearce@spearce.org> | |
Sat, 23 Dec 2006 07:34:33 +0000 (02:34 -0500) | ||
committer | Junio C Hamano <junkio@cox.net> | |
Fri, 29 Dec 2006 19:36:45 +0000 (11:36 -0800) |
Now that our pack access code's behavior may be altered by the
setting of core.packedGitWindowSize or core.packedGitLimit we need
to make sure these values are set as configured in the repository's
configuration file rather than to their defaults.
Signed-off-by: Shawn O. Pearce <spearce@spearce.org>
Signed-off-by: Junio C Hamano <junkio@cox.net>
setting of core.packedGitWindowSize or core.packedGitLimit we need
to make sure these values are set as configured in the repository's
configuration file rather than to their defaults.
Signed-off-by: Shawn O. Pearce <spearce@spearce.org>
Signed-off-by: Junio C Hamano <junkio@cox.net>
builtin-verify-pack.c | patch | blob | history |
diff --git a/builtin-verify-pack.c b/builtin-verify-pack.c
index 7d39d9bcd178a65686d6757f8a89065d25f55b23..4e31c273f48e3983aaf99dc6525982d34b6fed06 100644 (file)
--- a/builtin-verify-pack.c
+++ b/builtin-verify-pack.c
int no_more_options = 0;
int nothing_done = 1;
+ git_config(git_default_config);
while (1 < argc) {
if (!no_more_options && argv[1][0] == '-') {
if (!strcmp("-v", argv[1]))