Code

config: always parse GIT_CONFIG_PARAMETERS during git_config
[git.git] / t / t1300-repo-config.sh
index d0ab8ffe1b91a7fa37dfc7939cb3d5ae2c3cc100..52c9ac9b65393dceb21551b8fdb9a14c19c3b48e 100755 (executable)
@@ -854,4 +854,11 @@ test_expect_success 'git -c "key=value" support' '
        test_must_fail git -c core.name=value config name
 '
 
+test_expect_failure '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