diff options
author | Junio C Hamano <gitster@pobox.com> | 2016-11-22 22:37:04 +0100 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2016-11-22 22:55:20 +0100 |
commit | eb0224c617ba6b4299f2a9f85d6c4b3b5e10abc0 (patch) | |
tree | e619ede7551b1afd632defa778924abafabc87d4 /builtin/archive.c | |
parent | mailinfo: read local configuration (diff) | |
download | git-eb0224c617ba6b4299f2a9f85d6c4b3b5e10abc0.tar.xz git-eb0224c617ba6b4299f2a9f85d6c4b3b5e10abc0.zip |
archive: read local configuration
Since b9605bc4f2 ("config: only read .git/config from configured
repos", 2016-09-12), we do not read from ".git/config" unless we
know we are in a repository. "git archive" however didn't do the
repository discovery and instead relied on the old behaviour.
Teach the command to run a "gentle" version of repository discovery
so that local configuration variables are honoured.
[jc: stole tests from peff]
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'builtin/archive.c')
-rw-r--r-- | builtin/archive.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/builtin/archive.c b/builtin/archive.c index 49f491413a..f863465a0f 100644 --- a/builtin/archive.c +++ b/builtin/archive.c @@ -85,8 +85,8 @@ int cmd_archive(int argc, const char **argv, const char *prefix) const char *output = NULL; const char *remote = NULL; struct option local_opts[] = { - OPT_STRING('o', "output", &output, N_("file"), - N_("write the archive to this file")), + OPT_FILENAME('o', "output", &output, + N_("write the archive to this file")), OPT_STRING(0, "remote", &remote, N_("repo"), N_("retrieve the archive from remote repository <repo>")), OPT_STRING(0, "exec", &exec, N_("command"), @@ -105,5 +105,5 @@ int cmd_archive(int argc, const char **argv, const char *prefix) setvbuf(stderr, NULL, _IOLBF, BUFSIZ); - return write_archive(argc, argv, prefix, 1, output, 0); + return write_archive(argc, argv, prefix, output, 0); } |