diff options
author | Junio C Hamano <gitster@pobox.com> | 2010-05-21 04:02:14 -0700 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2010-05-21 04:02:14 -0700 |
commit | 7f3ed824a4ec15fc9725a4992b399ea4364c5adb (patch) | |
tree | 7604efbf6f1b7511449f87a937658d6efa53ddcc /t/t1300-repo-config.sh | |
parent | Merge branch 'em/checkout-orphan' (diff) | |
parent | Complete prototype of git_config_from_parameters() (diff) | |
download | tgif-7f3ed824a4ec15fc9725a4992b399ea4364c5adb.tar.xz |
Merge branch 'ar/config-from-command-line'
* ar/config-from-command-line:
Complete prototype of git_config_from_parameters()
Use strbufs instead of open-coded string manipulation
Allow passing of configuration parameters in the command line
Diffstat (limited to 't/t1300-repo-config.sh')
-rwxr-xr-x | t/t1300-repo-config.sh | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/t/t1300-repo-config.sh b/t/t1300-repo-config.sh index f11f98c3ce..64f05080b6 100755 --- a/t/t1300-repo-config.sh +++ b/t/t1300-repo-config.sh @@ -824,4 +824,12 @@ test_expect_success 'check split_cmdline return' " test_must_fail git merge master " +test_expect_success 'git -c "key=value" support' ' + test "z$(git -c name=value config name)" = zvalue && + test "z$(git -c core.name=value config core.name)" = zvalue && + test "z$(git -c CamelCase=value config camelcase)" = zvalue && + test "z$(git -c flag config --bool flag)" = ztrue && + test_must_fail git -c core.name=value config name +' + test_done |