summaryrefslogtreecommitdiff
path: root/t
diff options
context:
space:
mode:
authorJunio C Hamano <gitster@pobox.com>2016-02-26 21:37:26 (GMT)
committerJunio C Hamano <gitster@pobox.com>2016-02-26 21:37:26 (GMT)
commitd3faba840e758e6b5340b59a69e919fec77ce1c3 (patch)
treef1df2fc257a55cc1d2f31f8c99a7f93904fcd0e0 /t
parent8ef250c55908d1c752267ea4a05e0a421a729723 (diff)
parent638fa623d5b5fb392a062edf61ccf086d35ab26b (diff)
downloadgit-d3faba840e758e6b5340b59a69e919fec77ce1c3.zip
git-d3faba840e758e6b5340b59a69e919fec77ce1c3.tar.gz
git-d3faba840e758e6b5340b59a69e919fec77ce1c3.tar.bz2
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
Diffstat (limited to 't')
-rwxr-xr-xt/t1308-config-set.sh11
1 files changed, 11 insertions, 0 deletions
diff --git a/t/t1308-config-set.sh b/t/t1308-config-set.sh
index 82f82a1..005d66d 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