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>
This commit is contained in:
@ -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);
|
||||
}
|
||||
|
Reference in New Issue
Block a user