diff options
| author | Junio C Hamano <gitster@pobox.com> | 2020-09-18 17:58:06 -0700 |
|---|---|---|
| committer | Junio C Hamano <gitster@pobox.com> | 2020-09-18 17:58:06 -0700 |
| commit | 80cacaec41b0fde4900ffef5f4374a9365db0755 (patch) | |
| tree | edbb800295481c48be275e8ffe056809801b5d85 /builtin | |
| parent | Merge branch 'jc/dist-tarball-tweak' (diff) | |
| parent | config: complain about --worktree outside of a git repo (diff) | |
| download | git-80cacaec41b0fde4900ffef5f4374a9365db0755.tar.gz git-80cacaec41b0fde4900ffef5f4374a9365db0755.zip | |
Merge branch 'mt/config-fail-nongit-early'
Unlike "git config --local", "git config --worktree" did not fail
early and cleanly when started outside a git repository.
* mt/config-fail-nongit-early:
config: complain about --worktree outside of a git repo
Diffstat (limited to 'builtin')
| -rw-r--r-- | builtin/config.c | 12 |
1 files changed, 8 insertions, 4 deletions
diff --git a/builtin/config.c b/builtin/config.c index 5e39f61885..53e411d68a 100644 --- a/builtin/config.c +++ b/builtin/config.c @@ -628,11 +628,15 @@ int cmd_config(int argc, const char **argv, const char *prefix) usage_builtin_config(); } - if (use_local_config && nongit) - die(_("--local can only be used inside a git repository")); + if (nongit) { + if (use_local_config) + die(_("--local can only be used inside a git repository")); + if (given_config_source.blob) + die(_("--blob can only be used inside a git repository")); + if (use_worktree_config) + die(_("--worktree can only be used inside a git repository")); - if (given_config_source.blob && nongit) - die(_("--blob can only be used inside a git repository")); + } if (given_config_source.file && !strcmp(given_config_source.file, "-")) { |
