Merge branch 'jk/maint-remote-mirror-safer'
[gitweb.git] / t / t1300-repo-config.sh
index c3d91d10a03d25b912d56fa578828cb111826617..3db56267ee89e1b585a548f7bee13386e47395f4 100755 (executable)
@@ -889,8 +889,19 @@ test_expect_success 'key sanity-checking' '
        test_must_fail git config foo.1bar &&
        test_must_fail git config foo."ba
                                z".bar &&
+       test_must_fail git config . false &&
+       test_must_fail git config .foo false &&
+       test_must_fail git config foo. false &&
+       test_must_fail git config .foo. false &&
        git config foo.bar true &&
        git config foo."ba =z".bar false
 '
 
+test_expect_success 'git -c works with aliases of builtins' '
+       git config alias.checkconfig "-c foo.check=bar config foo.check" &&
+       echo bar >expect &&
+       git checkconfig >actual &&
+       test_cmp expect actual
+'
+
 test_done