summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: 2321286)
raw | patch | inline | side by side (parent: 2321286)
author | Jeff King <peff@peff.net> | |
Wed, 22 Jun 2011 01:22:20 +0000 (21:22 -0400) | ||
committer | Junio C Hamano <gitster@pobox.com> | |
Wed, 22 Jun 2011 18:12:34 +0000 (11:12 -0700) |
We load our own tar-specific config, and then chain to
git_default_config. This is pointless, as our caller should
already have loaded the default config. It also introduces a
needless inconsistency with the zip archiver, which does not
look at the config files at all (and therefore relies on the
caller to have loaded config).
Signed-off-by: Jeff King <peff@peff.net>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
git_default_config. This is pointless, as our caller should
already have loaded the default config. It also introduces a
needless inconsistency with the zip archiver, which does not
look at the config files at all (and therefore relies on the
caller to have loaded config).
Signed-off-by: Jeff King <peff@peff.net>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
archive-tar.c | patch | blob | history |
diff --git a/archive-tar.c b/archive-tar.c
index cee06ce3cbc1819008337633ed0753638c423ac5..1ab1a2caf53b01b5704cb9f61e9584d2ca3e553d 100644 (file)
--- a/archive-tar.c
+++ b/archive-tar.c
}
return 0;
}
- return git_default_config(var, value, cb);
+ return 0;
}
int write_tar_archive(struct archiver_args *args)