diff options
author | Junio C Hamano <gitster@pobox.com> | 2016-02-26 13:37:26 -0800 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2016-02-26 13:37:26 -0800 |
commit | d3faba840e758e6b5340b59a69e919fec77ce1c3 (patch) | |
tree | f1df2fc257a55cc1d2f31f8c99a7f93904fcd0e0 | |
parent | Merge branch 'jk/epipe-in-async' (diff) | |
parent | git config: report when trying to modify a non-existing repo config (diff) | |
download | tgif-d3faba840e758e6b5340b59a69e919fec77ce1c3.tar.xz |
Merge branch 'js/config-set-in-non-repository'
"git config section.var value" to set a value in per-repository
configuration file failed when it was run outside any repository,
but didn't say the reason correctly.
* js/config-set-in-non-repository:
git config: report when trying to modify a non-existing repo config
-rw-r--r-- | builtin/config.c | 3 | ||||
-rwxr-xr-x | t/t1308-config-set.sh | 11 |
2 files changed, 14 insertions, 0 deletions
diff --git a/builtin/config.c b/builtin/config.c index 8602b216d8..ca9f834ae6 100644 --- a/builtin/config.c +++ b/builtin/config.c @@ -377,6 +377,9 @@ static int get_colorbool(const char *var, int print) static void check_write(void) { + if (!given_config_source.file && !startup_info->have_repository) + die("not in a git directory"); + if (given_config_source.use_stdin) die("writing to stdin is not supported"); diff --git a/t/t1308-config-set.sh b/t/t1308-config-set.sh index 82f82a16d9..005d66dbef 100755 --- a/t/t1308-config-set.sh +++ b/t/t1308-config-set.sh @@ -218,4 +218,15 @@ test_expect_success 'check line errors for malformed values' ' test_i18ngrep "fatal: .*alias\.br.*\.git/config.*line 2" result ' +test_expect_success 'error on modifying repo config without repo' ' + mkdir no-repo && + ( + GIT_CEILING_DIRECTORIES=$(pwd) && + export GIT_CEILING_DIRECTORIES && + cd no-repo && + test_must_fail git config a.b c 2>err && + grep "not in a git directory" err + ) +' + test_done |