3 # Copyright (c) 2005 Johannes Schindelin
6 test_description='Test git config in different settings'
8 GIT_TEST_DEFAULT_INITIAL_BRANCH_NAME=main
9 export GIT_TEST_DEFAULT_INITIAL_BRANCH_NAME
13 test_expect_success 'clear default config' '
21 test_expect_success 'initial' '
22 git config section.penguin "little blue" &&
23 test_cmp expect .git/config
31 test_expect_success 'mixed case' '
32 git config Section.Movie BadPhysics &&
33 test_cmp expect .git/config
43 test_expect_success 'similar section' '
44 git config Sections.WhatEver Second &&
45 test_cmp expect .git/config
56 test_expect_success 'uppercase section' '
57 git config SECTION.UPPERCASE true &&
58 test_cmp expect .git/config
61 test_expect_success 'replace with non-match' '
62 git config section.penguin kingpin !blue
65 test_expect_success 'replace with non-match (actually matching)' '
66 git config section.penguin "very blue" !kingpin
79 test_expect_success 'non-match result' 'test_cmp expect .git/config'
81 test_expect_success 'find mixed-case key by canonical name' '
82 test_cmp_config Second sections.whatever
85 test_expect_success 'find mixed-case key by non-canonical name' '
86 test_cmp_config Second SeCtIoNs.WhAtEvEr
89 test_expect_success 'subsections are not canonicalized by git-config' '
90 cat >>.git/config <<-\EOF &&
93 [section "SubSection"]
96 test_cmp_config one section.subsection.key &&
97 test_cmp_config two section.SubSection.key
100 cat > .git/config <<\EOF
109 test_expect_success 'unset with cont. lines' '
110 git config --unset beta.baz
120 test_expect_success 'unset with cont. lines is correct' 'test_cmp expect .git/config'
122 cat > .git/config << EOF
123 [beta] ; silly comment # another comment
124 noIndent= sillyValue ; 'nother silly comment
128 haha ="beta" # last silly comment
131 [nextSection] noNewline = ouch
134 cp .git/config .git/config2
136 test_expect_success 'multiple unset' '
137 git config --unset-all beta.haha
141 [beta] ; silly comment # another comment
142 noIndent= sillyValue ; 'nother silly comment
146 [nextSection] noNewline = ouch
149 test_expect_success 'multiple unset is correct' '
150 test_cmp expect .git/config
153 cp .git/config2 .git/config
155 test_expect_success '--replace-all missing value' '
156 test_must_fail git config --replace-all beta.haha &&
157 test_cmp .git/config2 .git/config
162 test_expect_success '--replace-all' '
163 git config --replace-all beta.haha gamma
167 [beta] ; silly comment # another comment
168 noIndent= sillyValue ; 'nother silly comment
173 [nextSection] noNewline = ouch
176 test_expect_success 'all replaced' '
177 test_cmp expect .git/config
181 [beta] ; silly comment # another comment
182 noIndent= sillyValue ; 'nother silly comment
187 [nextSection] noNewline = ouch
189 test_expect_success 'really mean test' '
190 git config beta.haha alpha &&
191 test_cmp expect .git/config
195 [beta] ; silly comment # another comment
196 noIndent= sillyValue ; 'nother silly comment
204 test_expect_success 'really really mean test' '
205 git config nextsection.nonewline wow &&
206 test_cmp expect .git/config
209 test_expect_success 'get value' '
210 test_cmp_config alpha beta.haha
214 [beta] ; silly comment # another comment
215 noIndent= sillyValue ; 'nother silly comment
222 test_expect_success 'unset' '
223 git config --unset beta.haha &&
224 test_cmp expect .git/config
228 [beta] ; silly comment # another comment
229 noIndent= sillyValue ; 'nother silly comment
235 NoNewLine = wow2 for me
237 test_expect_success 'multivar' '
238 git config nextsection.NoNewLine "wow2 for me" "for me$" &&
239 test_cmp expect .git/config
242 test_expect_success 'non-match' '
243 git config --get nextsection.nonewline !for
246 test_expect_success 'non-match value' '
247 test_cmp_config wow --get nextsection.nonewline !for
250 test_expect_success 'multi-valued get returns final one' '
251 test_cmp_config "wow2 for me" --get nextsection.nonewline
254 test_expect_success 'multi-valued get-all returns all' '
255 cat >expect <<-\EOF &&
259 git config --get-all nextsection.nonewline >actual &&
260 test_cmp expect actual
264 [beta] ; silly comment # another comment
265 noIndent= sillyValue ; 'nother silly comment
271 NoNewLine = wow2 for me
273 test_expect_success 'multivar replace' '
274 git config nextsection.nonewline "wow3" "wow$" &&
275 test_cmp expect .git/config
278 test_expect_success 'ambiguous unset' '
279 test_must_fail git config --unset nextsection.nonewline
282 test_expect_success 'invalid unset' '
283 test_must_fail git config --unset somesection.nonewline
287 [beta] ; silly comment # another comment
288 noIndent= sillyValue ; 'nother silly comment
293 NoNewLine = wow2 for me
296 test_expect_success 'multivar unset' '
297 git config --unset nextsection.nonewline "wow3$" &&
298 test_cmp expect .git/config
301 test_expect_success 'invalid key' 'test_must_fail git config inval.2key blabla'
303 test_expect_success 'correct key' 'git config 123456.a123 987'
305 test_expect_success 'hierarchical section' '
306 git config Version.1.2.3eX.Alpha beta
310 [beta] ; silly comment # another comment
311 noIndent= sillyValue ; 'nother silly comment
316 NoNewLine = wow2 for me
323 test_expect_success 'hierarchical section value' '
324 test_cmp expect .git/config
328 beta.noindent=sillyValue
329 nextsection.nonewline=wow2 for me
331 version.1.2.3eX.alpha=beta
334 test_expect_success 'working --list' '
335 git config --list > output &&
336 test_cmp expect output
338 test_expect_success '--list without repo produces empty output' '
339 git --git-dir=nonexistent config --list >output &&
340 test_must_be_empty output
345 nextsection.nonewline
347 version.1.2.3eX.alpha
350 test_expect_success '--name-only --list' '
351 git config --name-only --list >output &&
352 test_cmp expect output
356 beta.noindent sillyValue
357 nextsection.nonewline wow2 for me
360 test_expect_success '--get-regexp' '
361 git config --get-regexp in >output &&
362 test_cmp expect output
367 nextsection.nonewline
370 test_expect_success '--name-only --get-regexp' '
371 git config --name-only --get-regexp in >output &&
372 test_cmp expect output
380 test_expect_success '--add' '
381 git config --add nextsection.nonewline "wow4 for you" &&
382 git config --get-all nextsection.nonewline > output &&
383 test_cmp expect output
386 cat > .git/config << EOF
393 test_expect_success 'get variable with no value' '
394 git config --get novalue.variable ^$
397 test_expect_success 'get variable with empty value' '
398 git config --get emptyvalue.variable ^$
401 echo novalue.variable > expect
403 test_expect_success 'get-regexp variable with no value' '
404 git config --get-regexp novalue > output &&
405 test_cmp expect output
408 echo 'novalue.variable true' > expect
410 test_expect_success 'get-regexp --bool variable with no value' '
411 git config --bool --get-regexp novalue > output &&
412 test_cmp expect output
415 echo 'emptyvalue.variable ' > expect
417 test_expect_success 'get-regexp variable with empty value' '
418 git config --get-regexp emptyvalue > output &&
419 test_cmp expect output
424 test_expect_success 'get bool variable with no value' '
425 git config --bool novalue.variable > output &&
426 test_cmp expect output
431 test_expect_success 'get bool variable with empty value' '
432 git config --bool emptyvalue.variable > output &&
433 test_cmp expect output
436 test_expect_success 'no arguments, but no crash' '
437 test_must_fail git config >output 2>&1 &&
438 test_i18ngrep usage output
441 cat > .git/config << EOF
453 test_expect_success 'new section is partial match of another' '
455 test_cmp expect .git/config
468 test_expect_success 'new variable inserts into proper section' '
471 test_cmp expect .git/config
474 test_expect_success 'alternative --file (non-existing file should fail)' '
475 test_must_fail git config --file non-existing-config -l &&
476 test_must_fail git config --file non-existing-config test.xyzzy
479 cat > other-config << EOF
488 test_expect_success 'alternative GIT_CONFIG' '
489 GIT_CONFIG=other-config git config --list >output &&
490 test_cmp expect output
493 test_expect_success 'alternative GIT_CONFIG (--file)' '
494 git config --file other-config --list >output &&
495 test_cmp expect output
498 test_expect_success 'alternative GIT_CONFIG (--file=-)' '
499 git config --file - --list <other-config >output &&
500 test_cmp expect output
503 test_expect_success 'setting a value in stdin is an error' '
504 test_must_fail git config --file - some.value foo
507 test_expect_success 'editing stdin is an error' '
508 test_must_fail git config --file - --edit
511 test_expect_success 'refer config from subdirectory' '
513 test_cmp_config -C x strasse --file=../other-config --get ein.bahn
523 test_expect_success '--set in alternative file' '
524 git config --file=other-config anwohner.park ausweis &&
525 test_cmp expect other-config
528 cat > .git/config << EOF
535 [branch "1 234 blabl/a"]
539 test_expect_success 'rename section' '
540 git config --rename-section branch.eins branch.zwei
550 [branch "1 234 blabl/a"]
554 test_expect_success 'rename succeeded' '
555 test_cmp expect .git/config
558 test_expect_success 'rename non-existing section' '
559 test_must_fail git config --rename-section \
560 branch."world domination" branch.drei
563 test_expect_success 'rename succeeded' '
564 test_cmp expect .git/config
567 test_expect_success 'rename another section' '
568 git config --rename-section branch."1 234 blabl/a" branch.drei
582 test_expect_success 'rename succeeded' '
583 test_cmp expect .git/config
586 cat >> .git/config << EOF
587 [branch "vier"] z = 1
590 test_expect_success 'rename a section with a var on the same line' '
591 git config --rename-section branch.vier branch.zwei
607 test_expect_success 'rename succeeded' '
608 test_cmp expect .git/config
611 test_expect_success 'renaming empty section name is rejected' '
612 test_must_fail git config --rename-section branch.zwei ""
615 test_expect_success 'renaming to bogus section is rejected' '
616 test_must_fail git config --rename-section branch.zwei "bogus name"
619 cat >> .git/config << EOF
620 [branch "zwei"] a = 1 [branch "vier"]
623 test_expect_success 'remove section' '
624 git config --remove-section branch.zwei
634 test_expect_success 'section was removed properly' '
635 test_cmp expect .git/config
641 dbname = %Ggitcvs2.%a.%m.sqlite
643 dbname = %Ggitcvs1.%a.%m.sqlite
646 test_expect_success 'section ending' '
648 git config gitcvs.enabled true &&
649 git config gitcvs.ext.dbname %Ggitcvs1.%a.%m.sqlite &&
650 git config gitcvs.dbname %Ggitcvs2.%a.%m.sqlite &&
651 test_cmp expect .git/config
655 test_expect_success numbers '
656 git config kilo.gram 1k &&
657 git config mega.ton 1m &&
659 echo 1048576 >>expect &&
660 git config --int --get kilo.gram >actual &&
661 git config --int --get mega.ton >>actual &&
662 test_cmp expect actual
665 test_expect_success '--int is at least 64 bits' '
666 git config giga.watts 121g &&
668 test_cmp_config 129922760704 --int --get giga.watts
671 test_expect_success 'invalid unit' '
672 git config aninvalid.unit "1auto" &&
673 test_cmp_config 1auto aninvalid.unit &&
674 test_must_fail git config --int --get aninvalid.unit 2>actual &&
675 test_i18ngrep "bad numeric config value .1auto. for .aninvalid.unit. in file .git/config: invalid unit" actual
678 test_expect_success 'line number is reported correctly' '
679 printf "[bool]\n\tvar\n" >invalid &&
680 test_must_fail git config -f invalid --path bool.var 2>actual &&
681 test_i18ngrep "line 2" actual
684 test_expect_success 'invalid stdin config' '
685 echo "[broken" | test_must_fail git config --list --file - >output 2>&1 &&
686 test_i18ngrep "bad config line 1 in standard input" output
700 test_expect_success bool '
702 git config bool.true1 01 &&
703 git config bool.true2 -1 &&
704 git config bool.true3 YeS &&
705 git config bool.true4 true &&
706 git config bool.false1 000 &&
707 git config bool.false2 "" &&
708 git config bool.false3 nO &&
709 git config bool.false4 FALSE &&
713 git config --bool --get bool.true$i >>result
714 git config --bool --get bool.false$i >>result
716 test_cmp expect result'
718 test_expect_success 'invalid bool (--get)' '
720 git config bool.nobool foobar &&
721 test_must_fail git config --bool --get bool.nobool'
723 test_expect_success 'invalid bool (set)' '
725 test_must_fail git config --bool bool.nobool foobar'
739 test_expect_success 'set --bool' '
742 git config --bool bool.true1 01 &&
743 git config --bool bool.true2 -1 &&
744 git config --bool bool.true3 YeS &&
745 git config --bool bool.true4 true &&
746 git config --bool bool.false1 000 &&
747 git config --bool bool.false2 "" &&
748 git config --bool bool.false3 nO &&
749 git config --bool bool.false4 FALSE &&
750 test_cmp expect .git/config'
759 test_expect_success 'set --int' '
762 git config --int int.val1 01 &&
763 git config --int int.val2 -1 &&
764 git config --int int.val3 5m &&
765 test_cmp expect .git/config
768 test_expect_success 'get --bool-or-int' '
769 cat >.git/config <<-\EOF &&
779 cat >expect <<-\EOF &&
788 git config --bool-or-int bool.true1 &&
789 git config --bool-or-int bool.true2 &&
790 git config --bool-or-int bool.false &&
791 git config --bool-or-int int.int1 &&
792 git config --bool-or-int int.int2 &&
793 git config --bool-or-int int.int3
795 test_cmp expect actual
810 test_expect_success 'set --bool-or-int' '
812 git config --bool-or-int bool.true1 true &&
813 git config --bool-or-int bool.false1 false &&
814 git config --bool-or-int bool.true2 yes &&
815 git config --bool-or-int bool.false2 no &&
816 git config --bool-or-int int.int1 0 &&
817 git config --bool-or-int int.int2 1 &&
818 git config --bool-or-int int.int3 -1 &&
819 test_cmp expect .git/config
829 test_expect_success !MINGW 'set --path' '
831 git config --path path.home "~/" &&
832 git config --path path.normal "/dev/null" &&
833 git config --path path.trailingtilde "foo~" &&
834 test_cmp expect .git/config'
836 if test_have_prereq !MINGW && test "${HOME+set}"
838 test_set_prereq HOMEVAR
847 test_expect_success HOMEVAR 'get --path' '
848 git config --get --path path.home > result &&
849 git config --get --path path.normal >> result &&
850 git config --get --path path.trailingtilde >> result &&
851 test_cmp expect result
859 test_expect_success !MINGW 'get --path copes with unset $HOME' '
862 test_must_fail git config --get --path path.home \
864 git config --get --path path.normal >>result &&
865 git config --get --path path.trailingtilde >>result
867 test_i18ngrep "[Ff]ailed to expand.*~/" msg &&
868 test_cmp expect result
871 test_expect_success 'get --path barfs on boolean variable' '
872 echo "[path]bool" >.git/config &&
873 test_must_fail git config --get --path path.bool
876 test_expect_success 'get --expiry-date' '
877 rel="3.weeks.5.days.00:00" &&
879 cat >.git/config <<-\EOF &&
881 valid1 = "3.weeks.5.days 00:00"
882 valid2 = "Fri Jun 4 15:46:55 2010"
883 valid3 = "2017/11/11 11:11:11PM"
884 valid4 = "2017/11/10 09:08:07 PM"
888 cat >expect <<-EOF &&
889 $(test-tool date timestamp $rel)
895 : "work around heredoc parsing bug fixed in dash 0.5.7 (in ec2c84d)" &&
897 echo "$rel_out $(git config --expiry-date date.valid1)"
898 git config --expiry-date date.valid2 &&
899 git config --expiry-date date.valid3 &&
900 git config --expiry-date date.valid4 &&
901 git config --expiry-date date.valid5
903 test_cmp expect actual &&
904 test_must_fail git config --expiry-date date.invalid1
907 test_expect_success 'get --type=color' '
909 git config foo.color "red" &&
910 git config --get --type=color foo.color >actual.raw &&
911 test_decode_color <actual.raw >actual &&
912 echo "<RED>" >expect &&
913 test_cmp expect actual
921 test_expect_success 'set --type=color' '
923 git config --type=color foo.color "red" &&
924 test_cmp expect .git/config
927 test_expect_success 'get --type=color barfs on non-color' '
928 echo "[foo]bar=not-a-color" >.git/config &&
929 test_must_fail git config --get --type=color foo.bar
932 test_expect_success 'set --type=color barfs on non-color' '
933 test_must_fail git config --type=color foo.color "not-a-color" 2>error &&
934 test_i18ngrep "cannot parse color" error
941 semicolon = "test;test"
944 test_expect_success 'quoting' '
946 git config quote.leading " test" &&
947 git config quote.ending "test " &&
948 git config quote.semicolon "test;test" &&
949 git config quote.hash "test#test" &&
950 test_cmp expect .git/config
953 test_expect_success 'key with newline' '
954 test_must_fail git config "key.with
957 test_expect_success 'value with newline' 'git config key.sub value.with\\\
960 cat > .git/config <<\EOF
965 noncont = not continued ; \
971 section.continued=continued
972 section.noncont=not continued
973 section.quotecont=cont;inued
976 test_expect_success 'value continued on next line' '
977 git config --list > result &&
978 test_cmp expect result
981 cat > .git/config <<\EOF
982 [section "sub=section"]
991 section.sub=section.val1
992 foo=barQsection.sub=section.val2
994 barQsection.sub=section.val3
997 Qsection.sub=section.val4
998 Qsection.sub=section.val5Q
1000 test_expect_success '--null --list' '
1001 git config --null --list >result.raw &&
1002 nul_to_q <result.raw >result &&
1004 test_cmp expect result
1007 test_expect_success '--null --get-regexp' '
1008 git config --null --get-regexp "val[0-9]" >result.raw &&
1009 nul_to_q <result.raw >result &&
1011 test_cmp expect result
1014 test_expect_success 'inner whitespace kept verbatim' '
1015 git config section.val "foo bar" &&
1016 test_cmp_config "foo bar" section.val
1019 test_expect_success SYMLINKS 'symlinked configuration' '
1020 ln -s notyet myconfig &&
1021 git config --file=myconfig test.frotz nitfol &&
1024 test "z$(git config --file=notyet test.frotz)" = znitfol &&
1025 git config --file=myconfig test.xyzzy rezrov &&
1028 cat >expect <<-\EOF &&
1033 git config --file=notyet test.frotz &&
1034 git config --file=notyet test.xyzzy
1036 test_cmp expect actual
1039 test_expect_success SYMLINKS 'symlink to nonexistent configuration' '
1040 ln -s doesnotexist linktonada &&
1041 ln -s linktonada linktolinktonada &&
1042 test_must_fail git config --file=linktonada --list &&
1043 test_must_fail git config --file=linktolinktonada --list
1046 test_expect_success 'check split_cmdline return' "
1047 git config alias.split-cmdline-fix 'echo \"' &&
1048 test_must_fail git split-cmdline-fix &&
1051 git commit -m 'initial commit' &&
1052 git config branch.main.mergeoptions 'echo \"' &&
1053 test_must_fail git merge main
1056 test_expect_success 'git -c "key=value" support' '
1057 cat >expect <<-\EOF &&
1063 git -c section.name=value config section.name &&
1064 git -c foo.CamelCase=value config foo.camelcase &&
1065 git -c foo.flag config --bool foo.flag
1067 test_cmp expect actual &&
1068 test_must_fail git -c name=value config section.name
1071 # We just need a type-specifier here that cares about the
1072 # distinction internally between a NULL boolean and a real
1073 # string (because most of git's internal parsers do care).
1074 # Using "--path" works, but we do not otherwise care about
1076 test_expect_success 'git -c can represent empty string' '
1078 git -c foo.empty= config --path foo.empty >actual &&
1079 test_cmp expect actual
1082 test_expect_success 'key sanity-checking' '
1083 test_must_fail git config foo=bar &&
1084 test_must_fail git config foo=.bar &&
1085 test_must_fail git config foo.ba=r &&
1086 test_must_fail git config foo.1bar &&
1087 test_must_fail git config foo."ba
1089 test_must_fail git config . false &&
1090 test_must_fail git config .foo false &&
1091 test_must_fail git config foo. false &&
1092 test_must_fail git config .foo. false &&
1093 git config foo.bar true &&
1094 git config foo."ba =z".bar false
1097 test_expect_success 'git -c works with aliases of builtins' '
1098 git config alias.checkconfig "-c foo.check=bar config foo.check" &&
1100 git checkconfig >actual &&
1101 test_cmp expect actual
1104 test_expect_success 'aliases can be CamelCased' '
1105 test_config alias.CamelCased "rev-parse HEAD" &&
1106 git CamelCased >out &&
1107 git rev-parse HEAD >expect &&
1111 test_expect_success 'git -c does not split values on equals' '
1112 echo "value with = in it" >expect &&
1113 git -c section.foo="value with = in it" config section.foo >actual &&
1114 test_cmp expect actual
1117 test_expect_success 'git -c dies on bogus config' '
1118 test_must_fail git -c core.bare=foo rev-parse
1121 test_expect_success 'git -c complains about empty key' '
1122 test_must_fail git -c "=foo" rev-parse
1125 test_expect_success 'git -c complains about empty key and value' '
1126 test_must_fail git -c "" rev-parse
1129 test_expect_success 'multiple git -c appends config' '
1130 test_config alias.x "!git -c x.two=2 config --get-regexp ^x\.*" &&
1131 cat >expect <<-\EOF &&
1135 git -c x.one=1 x >actual &&
1136 test_cmp expect actual
1139 test_expect_success 'last one wins: two level vars' '
1141 # sec.var and sec.VAR are the same variable, as the first
1142 # and the last level of a configuration variable name is
1147 git -c sec.var=val -c sec.VAR=VAL config --get sec.var >actual &&
1148 test_cmp expect actual &&
1149 git -c SEC.var=val -c sec.var=VAL config --get sec.var >actual &&
1150 test_cmp expect actual &&
1152 git -c sec.var=val -c sec.VAR=VAL config --get SEC.var >actual &&
1153 test_cmp expect actual &&
1154 git -c SEC.var=val -c sec.var=VAL config --get sec.VAR >actual &&
1155 test_cmp expect actual
1158 test_expect_success 'last one wins: three level vars' '
1160 # v.a.r and v.A.r are not the same variable, as the middle
1161 # level of a three-level configuration variable name is
1165 git -c v.a.r=val -c v.A.r=VAL config --get v.a.r >actual &&
1166 test_cmp expect actual &&
1167 git -c v.a.r=val -c v.A.r=VAL config --get V.a.R >actual &&
1168 test_cmp expect actual &&
1170 # v.a.r and V.a.R are the same variable, as the first
1171 # and the last level of a configuration variable name is
1175 git -c v.a.r=val -c v.a.R=VAL config --get v.a.r >actual &&
1176 test_cmp expect actual &&
1177 git -c v.a.r=val -c V.a.r=VAL config --get v.a.r >actual &&
1178 test_cmp expect actual &&
1179 git -c v.a.r=val -c v.a.R=VAL config --get V.a.R >actual &&
1180 test_cmp expect actual &&
1181 git -c v.a.r=val -c V.a.r=VAL config --get V.a.R >actual &&
1182 test_cmp expect actual
1185 test_expect_success 'old-fashioned settings are case insensitive' '
1186 test_when_finished "rm -f testConfig testConfig_expect testConfig_actual" &&
1188 cat >testConfig_actual <<-EOF &&
1192 q_to_tab >testConfig_expect <<-EOF &&
1196 git config -f testConfig_actual "v.a.r" value2 &&
1197 test_cmp testConfig_expect testConfig_actual &&
1199 cat >testConfig_actual <<-EOF &&
1203 q_to_tab >testConfig_expect <<-EOF &&
1207 git config -f testConfig_actual "V.a.R" value2 &&
1208 test_cmp testConfig_expect testConfig_actual &&
1210 cat >testConfig_actual <<-EOF &&
1214 q_to_tab >testConfig_expect <<-EOF &&
1219 git config -f testConfig_actual "V.A.r" value2 &&
1220 test_cmp testConfig_expect testConfig_actual &&
1222 cat >testConfig_actual <<-EOF &&
1226 q_to_tab >testConfig_expect <<-EOF &&
1231 git config -f testConfig_actual "v.A.r" value2 &&
1232 test_cmp testConfig_expect testConfig_actual
1235 test_expect_success 'setting different case sensitive subsections ' '
1236 test_when_finished "rm -f testConfig testConfig_expect testConfig_actual" &&
1238 cat >testConfig_actual <<-EOF &&
1248 q_to_tab >testConfig_expect <<-EOF &&
1261 git config -f testConfig_actual a.b.c v2 &&
1262 # match section and subsection, key is cased differently.
1263 git config -f testConfig_actual K.E.y v2 &&
1264 # section and key are matched case insensitive, but subsection needs
1265 # to match; When writing out new values only the key is adjusted
1266 git config -f testConfig_actual v.A.r v2 &&
1267 # subsection is not matched:
1268 git config -f testConfig_actual d.E.f v2 &&
1269 test_cmp testConfig_expect testConfig_actual
1272 for VAR in a .a a. a.0b a."b c". a."b c".0d
1274 test_expect_success "git -c $VAR=VAL rejects invalid '$VAR'" '
1275 test_must_fail git -c "$VAR=VAL" config -l
1279 for VAR in a.b a."b c".d
1281 test_expect_success "git -c $VAR=VAL works with valid '$VAR'" '
1283 git -c "$VAR=VAL" config --get "$VAR" >actual &&
1284 test_cmp expect actual
1288 test_expect_success 'git -c is not confused by empty environment' '
1289 GIT_CONFIG_PARAMETERS="" git -c x.one=1 config --list
1292 test_expect_success 'GIT_CONFIG_PARAMETERS handles old-style entries' '
1293 v="${SQ}key.one=foo${SQ}" &&
1294 v="$v ${SQ}key.two=bar${SQ}" &&
1295 v="$v ${SQ}key.ambiguous=section.whatever=value${SQ}" &&
1296 GIT_CONFIG_PARAMETERS=$v git config --get-regexp "key.*" >actual &&
1297 cat >expect <<-EOF &&
1300 key.ambiguous section.whatever=value
1302 test_cmp expect actual
1305 test_expect_success 'GIT_CONFIG_PARAMETERS handles new-style entries' '
1306 v="${SQ}key.one${SQ}=${SQ}foo${SQ}" &&
1307 v="$v ${SQ}key.two${SQ}=${SQ}bar${SQ}" &&
1308 v="$v ${SQ}key.ambiguous=section.whatever${SQ}=${SQ}value${SQ}" &&
1309 GIT_CONFIG_PARAMETERS=$v git config --get-regexp "key.*" >actual &&
1310 cat >expect <<-EOF &&
1313 key.ambiguous=section.whatever value
1315 test_cmp expect actual
1318 test_expect_success 'old and new-style entries can mix' '
1319 v="${SQ}key.oldone=oldfoo${SQ}" &&
1320 v="$v ${SQ}key.newone${SQ}=${SQ}newfoo${SQ}" &&
1321 v="$v ${SQ}key.oldtwo=oldbar${SQ}" &&
1322 v="$v ${SQ}key.newtwo${SQ}=${SQ}newbar${SQ}" &&
1323 GIT_CONFIG_PARAMETERS=$v git config --get-regexp "key.*" >actual &&
1324 cat >expect <<-EOF &&
1330 test_cmp expect actual
1333 test_expect_success 'old and new bools with ambiguous subsection' '
1334 v="${SQ}key.with=equals.oldbool${SQ}" &&
1335 v="$v ${SQ}key.with=equals.newbool${SQ}=" &&
1336 GIT_CONFIG_PARAMETERS=$v git config --get-regexp "key.*" >actual &&
1337 cat >expect <<-EOF &&
1338 key.with equals.oldbool
1339 key.with=equals.newbool
1341 test_cmp expect actual
1344 test_expect_success 'detect bogus GIT_CONFIG_PARAMETERS' '
1345 cat >expect <<-\EOF &&
1349 GIT_CONFIG_PARAMETERS="${SQ}env.one=one${SQ} ${SQ}env.two=two${SQ}" \
1350 git config --get-regexp "env.*" >actual &&
1351 test_cmp expect actual &&
1353 cat >expect <<-EOF &&
1357 GIT_CONFIG_PARAMETERS="${SQ}env.one=one${SQ}\\$SQ$SQ$SQ ${SQ}env.two=two${SQ}" \
1358 git config --get-regexp "env.*" >actual &&
1359 test_cmp expect actual &&
1361 test_must_fail env \
1362 GIT_CONFIG_PARAMETERS="${SQ}env.one=one${SQ}\\$SQ ${SQ}env.two=two${SQ}" \
1363 git config --get-regexp "env.*"
1366 test_expect_success 'git --config-env=key=envvar support' '
1367 cat >expect <<-\EOF &&
1373 ENVVAR=value git --config-env=core.name=ENVVAR config core.name &&
1374 ENVVAR=value git --config-env=foo.CamelCase=ENVVAR config foo.camelcase &&
1375 ENVVAR= git --config-env=foo.flag=ENVVAR config --bool foo.flag
1377 test_cmp expect actual
1380 test_expect_success 'git --config-env fails with invalid parameters' '
1381 test_must_fail git --config-env=foo.flag config --bool foo.flag 2>error &&
1382 test_i18ngrep "invalid config format: foo.flag" error &&
1383 test_must_fail git --config-env=foo.flag= config --bool foo.flag 2>error &&
1384 test_i18ngrep "missing environment variable name for configuration ${SQ}foo.flag${SQ}" error &&
1385 sane_unset NONEXISTENT &&
1386 test_must_fail git --config-env=foo.flag=NONEXISTENT config --bool foo.flag 2>error &&
1387 test_i18ngrep "missing environment variable ${SQ}NONEXISTENT${SQ} for configuration ${SQ}foo.flag${SQ}" error
1390 test_expect_success 'git -c and --config-env work together' '
1391 cat >expect <<-\EOF &&
1395 ENVVAR=env-value git \
1396 -c bar.cmd=cmd-value \
1397 --config-env=bar.env=ENVVAR \
1398 config --get-regexp "^bar.*" >actual &&
1399 test_cmp expect actual
1402 test_expect_success 'git -c and --config-env override each other' '
1403 cat >expect <<-\EOF &&
1408 ENVVAR=env git -c bar.bar=cmd --config-env=bar.bar=ENVVAR config bar.bar &&
1409 ENVVAR=env git --config-env=bar.bar=ENVVAR -c bar.bar=cmd config bar.bar
1411 test_cmp expect actual
1414 test_expect_success '--config-env handles keys with equals' '
1415 echo value=with=equals >expect &&
1416 ENVVAR=value=with=equals git \
1417 --config-env=section.subsection=with=equals.key=ENVVAR \
1418 config section.subsection=with=equals.key >actual &&
1419 test_cmp expect actual
1422 test_expect_success 'git config handles environment config pairs' '
1423 GIT_CONFIG_COUNT=2 \
1424 GIT_CONFIG_KEY_0="pair.one" GIT_CONFIG_VALUE_0="foo" \
1425 GIT_CONFIG_KEY_1="pair.two" GIT_CONFIG_VALUE_1="bar" \
1426 git config --get-regexp "pair.*" >actual &&
1427 cat >expect <<-EOF &&
1431 test_cmp expect actual
1434 test_expect_success 'git config ignores pairs without count' '
1435 test_must_fail env GIT_CONFIG_KEY_0="pair.one" GIT_CONFIG_VALUE_0="value" \
1436 git config pair.one 2>error &&
1437 test_must_be_empty error
1440 test_expect_success 'git config ignores pairs with zero count' '
1441 test_must_fail env \
1442 GIT_CONFIG_COUNT=0 \
1443 GIT_CONFIG_KEY_0="pair.one" GIT_CONFIG_VALUE_0="value" \
1447 test_expect_success 'git config ignores pairs exceeding count' '
1448 GIT_CONFIG_COUNT=1 \
1449 GIT_CONFIG_KEY_0="pair.one" GIT_CONFIG_VALUE_0="value" \
1450 GIT_CONFIG_KEY_1="pair.two" GIT_CONFIG_VALUE_1="value" \
1451 git config --get-regexp "pair.*" >actual &&
1452 cat >expect <<-EOF &&
1455 test_cmp expect actual
1458 test_expect_success 'git config ignores pairs with zero count' '
1459 test_must_fail env \
1460 GIT_CONFIG_COUNT=0 GIT_CONFIG_KEY_0="pair.one" GIT_CONFIG_VALUE_0="value" \
1461 git config pair.one >error &&
1462 test_must_be_empty error
1465 test_expect_success 'git config ignores pairs with empty count' '
1466 test_must_fail env \
1467 GIT_CONFIG_COUNT= GIT_CONFIG_KEY_0="pair.one" GIT_CONFIG_VALUE_0="value" \
1468 git config pair.one >error &&
1469 test_must_be_empty error
1472 test_expect_success 'git config fails with invalid count' '
1473 test_must_fail env GIT_CONFIG_COUNT=10a git config --list 2>error &&
1474 test_i18ngrep "bogus count" error &&
1475 test_must_fail env GIT_CONFIG_COUNT=9999999999999999 git config --list 2>error &&
1476 test_i18ngrep "too many entries" error
1479 test_expect_success 'git config fails with missing config key' '
1480 test_must_fail env GIT_CONFIG_COUNT=1 GIT_CONFIG_VALUE_0="value" \
1481 git config --list 2>error &&
1482 test_i18ngrep "missing config key" error
1485 test_expect_success 'git config fails with missing config value' '
1486 test_must_fail env GIT_CONFIG_COUNT=1 GIT_CONFIG_KEY_0="pair.one" \
1487 git config --list 2>error &&
1488 test_i18ngrep "missing config value" error
1491 test_expect_success 'git config fails with invalid config pair key' '
1492 test_must_fail env GIT_CONFIG_COUNT=1 \
1493 GIT_CONFIG_KEY_0= GIT_CONFIG_VALUE_0=value \
1494 git config --list &&
1495 test_must_fail env GIT_CONFIG_COUNT=1 \
1496 GIT_CONFIG_KEY_0=missing-section GIT_CONFIG_VALUE_0=value \
1500 test_expect_success 'environment overrides config file' '
1501 test_when_finished "rm -f .git/config" &&
1502 cat >.git/config <<-EOF &&
1506 GIT_CONFIG_COUNT=1 GIT_CONFIG_KEY_0=pair.one GIT_CONFIG_VALUE_0=override \
1507 git config pair.one >actual &&
1508 cat >expect <<-EOF &&
1511 test_cmp expect actual
1514 test_expect_success 'GIT_CONFIG_PARAMETERS overrides environment config' '
1515 GIT_CONFIG_COUNT=1 GIT_CONFIG_KEY_0=pair.one GIT_CONFIG_VALUE_0=value \
1516 GIT_CONFIG_PARAMETERS="${SQ}pair.one=override${SQ}" \
1517 git config pair.one >actual &&
1518 cat >expect <<-EOF &&
1521 test_cmp expect actual
1524 test_expect_success 'command line overrides environment config' '
1525 GIT_CONFIG_COUNT=1 GIT_CONFIG_KEY_0=pair.one GIT_CONFIG_VALUE_0=value \
1526 git -c pair.one=override config pair.one >actual &&
1527 cat >expect <<-EOF &&
1530 test_cmp expect actual
1533 test_expect_success 'git config --edit works' '
1534 git config -f tmp test.value no &&
1535 echo test.value=yes >expect &&
1536 GIT_EDITOR="echo [test]value=yes >" git config -f tmp --edit &&
1537 git config -f tmp --list >actual &&
1538 test_cmp expect actual
1541 test_expect_success 'git config --edit respects core.editor' '
1542 git config -f tmp test.value no &&
1543 echo test.value=yes >expect &&
1544 test_config core.editor "echo [test]value=yes >" &&
1545 git config -f tmp --edit &&
1546 git config -f tmp --list >actual &&
1547 test_cmp expect actual
1550 # malformed configuration files
1551 test_expect_success 'barf on syntax error' '
1552 cat >.git/config <<-\EOF &&
1553 # broken section line
1557 test_must_fail git config --get section.key >actual 2>error &&
1558 test_i18ngrep " line 3 " error
1561 test_expect_success 'barf on incomplete section header' '
1562 cat >.git/config <<-\EOF &&
1563 # broken section line
1567 test_must_fail git config --get section.key >actual 2>error &&
1568 test_i18ngrep " line 2 " error
1571 test_expect_success 'barf on incomplete string' '
1572 cat >.git/config <<-\EOF &&
1573 # broken section line
1577 test_must_fail git config --get section.key >actual 2>error &&
1578 test_i18ngrep " line 3 " error
1581 test_expect_success 'urlmatch' '
1582 cat >.git/config <<-\EOF &&
1585 [http "https://weak.example.com"]
1587 cookieFile = /tmp/cookie.txt
1590 test_expect_code 1 git config --bool --get-urlmatch doesnt.exist https://good.example.com >actual &&
1591 test_must_be_empty actual &&
1593 echo true >expect &&
1594 git config --bool --get-urlmatch http.SSLverify https://good.example.com >actual &&
1595 test_cmp expect actual &&
1597 echo false >expect &&
1598 git config --bool --get-urlmatch http.sslverify https://weak.example.com >actual &&
1599 test_cmp expect actual &&
1602 echo http.cookiefile /tmp/cookie.txt &&
1603 echo http.sslverify false
1605 git config --get-urlmatch HTTP https://weak.example.com >actual &&
1606 test_cmp expect actual
1609 test_expect_success 'urlmatch favors more specific URLs' '
1610 cat >.git/config <<-\EOF &&
1611 [http "https://example.com/"]
1612 cookieFile = /tmp/root.txt
1613 [http "https://example.com/subdirectory"]
1614 cookieFile = /tmp/subdirectory.txt
1615 [http "https://user@example.com/"]
1616 cookieFile = /tmp/user.txt
1617 [http "https://averylonguser@example.com/"]
1618 cookieFile = /tmp/averylonguser.txt
1619 [http "https://preceding.example.com"]
1620 cookieFile = /tmp/preceding.txt
1621 [http "https://*.example.com"]
1622 cookieFile = /tmp/wildcard.txt
1623 [http "https://*.example.com/wildcardwithsubdomain"]
1624 cookieFile = /tmp/wildcardwithsubdomain.txt
1625 [http "https://*.example.*"]
1626 cookieFile = /tmp/multiwildcard.txt
1627 [http "https://trailing.example.com"]
1628 cookieFile = /tmp/trailing.txt
1629 [http "https://user@*.example.com/"]
1630 cookieFile = /tmp/wildcardwithuser.txt
1631 [http "https://sub.example.com/"]
1632 cookieFile = /tmp/sub.txt
1635 echo http.cookiefile /tmp/root.txt >expect &&
1636 git config --get-urlmatch HTTP https://example.com >actual &&
1637 test_cmp expect actual &&
1639 echo http.cookiefile /tmp/subdirectory.txt >expect &&
1640 git config --get-urlmatch HTTP https://example.com/subdirectory >actual &&
1641 test_cmp expect actual &&
1643 echo http.cookiefile /tmp/subdirectory.txt >expect &&
1644 git config --get-urlmatch HTTP https://example.com/subdirectory/nested >actual &&
1645 test_cmp expect actual &&
1647 echo http.cookiefile /tmp/user.txt >expect &&
1648 git config --get-urlmatch HTTP https://user@example.com/ >actual &&
1649 test_cmp expect actual &&
1651 echo http.cookiefile /tmp/subdirectory.txt >expect &&
1652 git config --get-urlmatch HTTP https://averylonguser@example.com/subdirectory >actual &&
1653 test_cmp expect actual &&
1655 echo http.cookiefile /tmp/preceding.txt >expect &&
1656 git config --get-urlmatch HTTP https://preceding.example.com >actual &&
1657 test_cmp expect actual &&
1659 echo http.cookiefile /tmp/wildcard.txt >expect &&
1660 git config --get-urlmatch HTTP https://wildcard.example.com >actual &&
1661 test_cmp expect actual &&
1663 echo http.cookiefile /tmp/sub.txt >expect &&
1664 git config --get-urlmatch HTTP https://sub.example.com/wildcardwithsubdomain >actual &&
1665 test_cmp expect actual &&
1667 echo http.cookiefile /tmp/trailing.txt >expect &&
1668 git config --get-urlmatch HTTP https://trailing.example.com >actual &&
1669 test_cmp expect actual &&
1671 echo http.cookiefile /tmp/sub.txt >expect &&
1672 git config --get-urlmatch HTTP https://user@sub.example.com >actual &&
1673 test_cmp expect actual &&
1675 echo http.cookiefile /tmp/multiwildcard.txt >expect &&
1676 git config --get-urlmatch HTTP https://wildcard.example.org >actual &&
1677 test_cmp expect actual
1680 test_expect_success 'urlmatch with wildcard' '
1681 cat >.git/config <<-\EOF &&
1684 [http "https://*.example.com"]
1686 cookieFile = /tmp/cookie.txt
1689 test_expect_code 1 git config --bool --get-urlmatch doesnt.exist https://good.example.com >actual &&
1690 test_must_be_empty actual &&
1692 echo true >expect &&
1693 git config --bool --get-urlmatch http.SSLverify https://example.com >actual &&
1694 test_cmp expect actual &&
1696 echo true >expect &&
1697 git config --bool --get-urlmatch http.SSLverify https://good-example.com >actual &&
1698 test_cmp expect actual &&
1700 echo true >expect &&
1701 git config --bool --get-urlmatch http.sslverify https://deep.nested.example.com >actual &&
1702 test_cmp expect actual &&
1704 echo false >expect &&
1705 git config --bool --get-urlmatch http.sslverify https://good.example.com >actual &&
1706 test_cmp expect actual &&
1709 echo http.cookiefile /tmp/cookie.txt &&
1710 echo http.sslverify false
1712 git config --get-urlmatch HTTP https://good.example.com >actual &&
1713 test_cmp expect actual &&
1715 echo http.sslverify >expect &&
1716 git config --get-urlmatch HTTP https://more.example.com.au >actual &&
1717 test_cmp expect actual
1720 # good section hygiene
1721 test_expect_success '--unset last key removes section (except if commented)' '
1722 cat >.git/config <<-\EOF &&
1723 # some generic comment on the configuration file itself
1724 # a comment specific to this "section" section.
1726 # some intervening lines
1727 # that should also be dropped
1730 # please be careful when you update the above variable
1733 cat >expect <<-\EOF &&
1734 # some generic comment on the configuration file itself
1735 # a comment specific to this "section" section.
1737 # some intervening lines
1738 # that should also be dropped
1740 # please be careful when you update the above variable
1743 git config --unset section.key &&
1744 test_cmp expect .git/config &&
1746 cat >.git/config <<-\EOF &&
1752 cat >expect <<-\EOF &&
1756 git config --unset section.key &&
1757 test_cmp expect .git/config &&
1759 q_to_tab >.git/config <<-\EOF &&
1766 git config --unset two.key &&
1767 ! grep two .git/config &&
1769 q_to_tab >.git/config <<-\EOF &&
1776 git config --unset-all one.key &&
1777 test_line_count = 0 .git/config &&
1779 q_to_tab >.git/config <<-\EOF &&
1782 Q# a comment not at the start
1786 git config --unset two.key &&
1787 grep two .git/config &&
1789 q_to_tab >.git/config <<-\EOF &&
1791 Qkey = not [two "subsection"]
1798 git config --unset two.subsection.key &&
1799 test "not [two subsection]" = "$(git config one.key)" &&
1800 test_line_count = 3 .git/config
1803 test_expect_success '--unset-all removes section if empty & uncommented' '
1804 cat >.git/config <<-\EOF &&
1810 git config --unset-all section.key &&
1811 test_line_count = 0 .git/config
1814 test_expect_success 'adding a key into an empty section reuses header' '
1815 cat >.git/config <<-\EOF &&
1819 q_to_tab >expect <<-\EOF &&
1824 git config section.key value &&
1825 test_cmp expect .git/config
1828 test_expect_success POSIXPERM,PERL 'preserves existing permissions' '
1829 chmod 0600 .git/config &&
1830 git config imap.pass Hunter2 &&
1832 "die q(badset) if ((stat(q(.git/config)))[2] & 07777) != 0600" &&
1833 git config --rename-section imap pop &&
1835 "die q(badrename) if ((stat(q(.git/config)))[2] & 07777) != 0600"
1838 ! test_have_prereq MINGW ||
1839 HOME="$(pwd)" # convert to Windows path
1841 test_expect_success 'set up --show-origin tests' '
1842 INCLUDE_DIR="$HOME/include" &&
1843 mkdir -p "$INCLUDE_DIR" &&
1844 cat >"$INCLUDE_DIR"/absolute.include <<-\EOF &&
1848 cat >"$INCLUDE_DIR"/relative.include <<-\EOF &&
1852 cat >"$HOME"/.gitconfig <<-EOF &&
1857 path = "$INCLUDE_DIR/absolute.include"
1859 cat >.git/config <<-\EOF
1864 path = ../include/relative.include
1868 test_expect_success '--show-origin with --list' '
1869 cat >expect <<-EOF &&
1870 file:$HOME/.gitconfig user.global=true
1871 file:$HOME/.gitconfig user.override=global
1872 file:$HOME/.gitconfig include.path=$INCLUDE_DIR/absolute.include
1873 file:$INCLUDE_DIR/absolute.include user.absolute=include
1874 file:.git/config user.local=true
1875 file:.git/config user.override=local
1876 file:.git/config include.path=../include/relative.include
1877 file:.git/../include/relative.include user.relative=include
1878 command line: user.environ=true
1879 command line: user.cmdline=true
1881 GIT_CONFIG_COUNT=1 GIT_CONFIG_KEY_0=user.environ GIT_CONFIG_VALUE_0=true\
1882 git -c user.cmdline=true config --list --show-origin >output &&
1883 test_cmp expect output
1886 test_expect_success '--show-origin with --list --null' '
1887 cat >expect <<-EOF &&
1888 file:$HOME/.gitconfigQuser.global
1889 trueQfile:$HOME/.gitconfigQuser.override
1890 globalQfile:$HOME/.gitconfigQinclude.path
1891 $INCLUDE_DIR/absolute.includeQfile:$INCLUDE_DIR/absolute.includeQuser.absolute
1892 includeQfile:.git/configQuser.local
1893 trueQfile:.git/configQuser.override
1894 localQfile:.git/configQinclude.path
1895 ../include/relative.includeQfile:.git/../include/relative.includeQuser.relative
1896 includeQcommand line:Quser.cmdline
1899 git -c user.cmdline=true config --null --list --show-origin >output.raw &&
1900 nul_to_q <output.raw >output &&
1901 # The here-doc above adds a newline that the --null output would not
1902 # include. Add it here to make the two comparable.
1904 test_cmp expect output
1907 test_expect_success '--show-origin with single file' '
1908 cat >expect <<-\EOF &&
1909 file:.git/config user.local=true
1910 file:.git/config user.override=local
1911 file:.git/config include.path=../include/relative.include
1913 git config --local --list --show-origin >output &&
1914 test_cmp expect output
1917 test_expect_success '--show-origin with --get-regexp' '
1918 cat >expect <<-EOF &&
1919 file:$HOME/.gitconfig user.global true
1920 file:.git/config user.local true
1922 git config --show-origin --get-regexp "user\.[g|l].*" >output &&
1923 test_cmp expect output
1926 test_expect_success '--show-origin getting a single key' '
1927 cat >expect <<-\EOF &&
1928 file:.git/config local
1930 git config --show-origin user.override >output &&
1931 test_cmp expect output
1934 test_expect_success 'set up custom config file' '
1935 CUSTOM_CONFIG_FILE="custom.conf" &&
1936 cat >"$CUSTOM_CONFIG_FILE" <<-\EOF
1942 test_expect_success !MINGW 'set up custom config file with special name characters' '
1943 WEIRDLY_NAMED_FILE="file\" (dq) and spaces.conf" &&
1944 cp "$CUSTOM_CONFIG_FILE" "$WEIRDLY_NAMED_FILE"
1947 test_expect_success !MINGW '--show-origin escape special file name characters' '
1948 cat >expect <<-\EOF &&
1949 file:"file\" (dq) and spaces.conf" user.custom=true
1951 git config --file "$WEIRDLY_NAMED_FILE" --show-origin --list >output &&
1952 test_cmp expect output
1955 test_expect_success '--show-origin stdin' '
1956 cat >expect <<-\EOF &&
1957 standard input: user.custom=true
1959 git config --file - --show-origin --list <"$CUSTOM_CONFIG_FILE" >output &&
1960 test_cmp expect output
1963 test_expect_success '--show-origin stdin with file include' '
1964 cat >"$INCLUDE_DIR"/stdin.include <<-EOF &&
1968 cat >expect <<-EOF &&
1969 file:$INCLUDE_DIR/stdin.include include
1971 echo "[include]path=\"$INCLUDE_DIR\"/stdin.include" |
1972 git config --show-origin --includes --file - user.stdin >output &&
1974 test_cmp expect output
1977 test_expect_success '--show-origin blob' '
1978 blob=$(git hash-object -w "$CUSTOM_CONFIG_FILE") &&
1979 cat >expect <<-EOF &&
1980 blob:$blob user.custom=true
1982 git config --blob=$blob --show-origin --list >output &&
1983 test_cmp expect output
1986 test_expect_success '--show-origin blob ref' '
1987 cat >expect <<-\EOF &&
1988 blob:main:custom.conf user.custom=true
1990 git add "$CUSTOM_CONFIG_FILE" &&
1991 git commit -m "new config file" &&
1992 git config --blob=main:"$CUSTOM_CONFIG_FILE" --show-origin --list >output &&
1993 test_cmp expect output
1996 test_expect_success '--show-scope with --list' '
1997 cat >expect <<-EOF &&
1998 global user.global=true
1999 global user.override=global
2000 global include.path=$INCLUDE_DIR/absolute.include
2001 global user.absolute=include
2002 local user.local=true
2003 local user.override=local
2004 local include.path=../include/relative.include
2005 local user.relative=include
2006 command user.cmdline=true
2008 git -c user.cmdline=true config --list --show-scope >output &&
2009 test_cmp expect output
2012 test_expect_success !MINGW '--show-scope with --blob' '
2013 blob=$(git hash-object -w "$CUSTOM_CONFIG_FILE") &&
2014 cat >expect <<-EOF &&
2015 command user.custom=true
2017 git config --blob=$blob --show-scope --list >output &&
2018 test_cmp expect output
2021 test_expect_success '--show-scope with --local' '
2022 cat >expect <<-\EOF &&
2023 local user.local=true
2024 local user.override=local
2025 local include.path=../include/relative.include
2027 git config --local --list --show-scope >output &&
2028 test_cmp expect output
2031 test_expect_success '--show-scope getting a single value' '
2032 cat >expect <<-\EOF &&
2035 git config --show-scope --get user.local >output &&
2036 test_cmp expect output
2039 test_expect_success '--show-scope with --show-origin' '
2040 cat >expect <<-EOF &&
2041 global file:$HOME/.gitconfig user.global=true
2042 global file:$HOME/.gitconfig user.override=global
2043 global file:$HOME/.gitconfig include.path=$INCLUDE_DIR/absolute.include
2044 global file:$INCLUDE_DIR/absolute.include user.absolute=include
2045 local file:.git/config user.local=true
2046 local file:.git/config user.override=local
2047 local file:.git/config include.path=../include/relative.include
2048 local file:.git/../include/relative.include user.relative=include
2049 command command line: user.cmdline=true
2051 git -c user.cmdline=true config --list --show-origin --show-scope >output &&
2052 test_cmp expect output
2055 for opt in --local --worktree
2057 test_expect_success "$opt requires a repo" '
2058 # we expect 128 to ensure that we do not simply
2059 # fail to find anything and return code "1"
2060 test_expect_code 128 nongit git config $opt foo.bar
2064 cat >.git/config <<-\EOF &&
2071 test_expect_success 'identical modern --type specifiers are allowed' '
2072 test_cmp_config 1048576 --type=int --type=int section.big
2075 test_expect_success 'identical legacy --type specifiers are allowed' '
2076 test_cmp_config 1048576 --int --int section.big
2079 test_expect_success 'identical mixed --type specifiers are allowed' '
2080 test_cmp_config 1048576 --int --type=int section.big
2083 test_expect_success 'non-identical modern --type specifiers are not allowed' '
2084 test_must_fail git config --type=int --type=bool section.big 2>error &&
2085 test_i18ngrep "only one type at a time" error
2088 test_expect_success 'non-identical legacy --type specifiers are not allowed' '
2089 test_must_fail git config --int --bool section.big 2>error &&
2090 test_i18ngrep "only one type at a time" error
2093 test_expect_success 'non-identical mixed --type specifiers are not allowed' '
2094 test_must_fail git config --type=int --bool section.big 2>error &&
2095 test_i18ngrep "only one type at a time" error
2098 test_expect_success '--type allows valid type specifiers' '
2099 test_cmp_config true --type=bool section.foo
2102 test_expect_success '--no-type unsets type specifiers' '
2103 test_cmp_config 10 --type=bool --no-type section.number
2106 test_expect_success 'unset type specifiers may be reset to conflicting ones' '
2107 test_cmp_config 1048576 --type=bool --no-type --type=int section.big
2110 test_expect_success '--type rejects unknown specifiers' '
2111 test_must_fail git config --type=nonsense section.foo 2>error &&
2112 test_i18ngrep "unrecognized --type argument" error
2115 test_expect_success '--replace-all does not invent newlines' '
2116 q_to_tab >.git/config <<-\EOF &&
2124 q_to_tab >expect <<-\EOF &&
2132 git config --replace-all abc.key b &&
2133 test_cmp expect .git/config
2136 test_expect_success 'set all config with value-pattern' '
2137 test_when_finished rm -f config initial &&
2138 git config --file=initial abc.key one &&
2140 # no match => add new entry
2141 cp initial config &&
2142 git config --file=config abc.key two a+ &&
2143 git config --file=config --list >actual &&
2144 cat >expect <<-\EOF &&
2148 test_cmp expect actual &&
2150 # multiple matches => failure
2151 test_must_fail git config --file=config abc.key three o+ 2>err &&
2152 test_i18ngrep "has multiple values" err &&
2154 # multiple values, no match => add
2155 git config --file=config abc.key three a+ &&
2156 git config --file=config --list >actual &&
2157 cat >expect <<-\EOF &&
2162 test_cmp expect actual &&
2164 # single match => replace
2165 git config --file=config abc.key four h+ &&
2166 git config --file=config --list >actual &&
2167 cat >expect <<-\EOF &&
2172 test_cmp expect actual
2175 test_expect_success '--replace-all and value-pattern' '
2176 test_when_finished rm -f config &&
2177 git config --file=config --add abc.key one &&
2178 git config --file=config --add abc.key two &&
2179 git config --file=config --add abc.key three &&
2180 git config --file=config --replace-all abc.key four "o+" &&
2181 git config --file=config --list >actual &&
2182 cat >expect <<-\EOF &&
2186 test_cmp expect actual
2189 test_expect_success 'refuse --fixed-value for incompatible actions' '
2190 test_when_finished rm -f config &&
2191 git config --file=config dev.null bogus &&
2193 # These modes do not allow --fixed-value at all
2194 test_must_fail git config --file=config --fixed-value --add dev.null bogus &&
2195 test_must_fail git config --file=config --fixed-value --get-urlmatch dev.null bogus &&
2196 test_must_fail git config --file=config --fixed-value --get-urlmatch dev.null bogus &&
2197 test_must_fail git config --file=config --fixed-value --rename-section dev null &&
2198 test_must_fail git config --file=config --fixed-value --remove-section dev &&
2199 test_must_fail git config --file=config --fixed-value --list &&
2200 test_must_fail git config --file=config --fixed-value --get-color dev.null &&
2201 test_must_fail git config --file=config --fixed-value --get-colorbool dev.null &&
2203 # These modes complain when --fixed-value has no value-pattern
2204 test_must_fail git config --file=config --fixed-value dev.null bogus &&
2205 test_must_fail git config --file=config --fixed-value --replace-all dev.null bogus &&
2206 test_must_fail git config --file=config --fixed-value --get dev.null &&
2207 test_must_fail git config --file=config --fixed-value --get-all dev.null &&
2208 test_must_fail git config --file=config --fixed-value --get-regexp "dev.*" &&
2209 test_must_fail git config --file=config --fixed-value --unset dev.null &&
2210 test_must_fail git config --file=config --fixed-value --unset-all dev.null
2213 test_expect_success '--fixed-value uses exact string matching' '
2214 test_when_finished rm -f config initial &&
2215 META="a+b*c?d[e]f.g" &&
2216 git config --file=initial fixed.test "$META" &&
2218 cp initial config &&
2219 git config --file=config fixed.test bogus "$META" &&
2220 git config --file=config --list >actual &&
2221 cat >expect <<-EOF &&
2225 test_cmp expect actual &&
2227 cp initial config &&
2228 git config --file=config --fixed-value fixed.test bogus "$META" &&
2229 git config --file=config --list >actual &&
2230 cat >expect <<-\EOF &&
2233 test_cmp expect actual &&
2235 cp initial config &&
2236 test_must_fail git config --file=config --unset fixed.test "$META" &&
2237 git config --file=config --fixed-value --unset fixed.test "$META" &&
2238 test_must_fail git config --file=config fixed.test &&
2240 cp initial config &&
2241 test_must_fail git config --file=config --unset-all fixed.test "$META" &&
2242 git config --file=config --fixed-value --unset-all fixed.test "$META" &&
2243 test_must_fail git config --file=config fixed.test &&
2245 cp initial config &&
2246 git config --file=config --replace-all fixed.test bogus "$META" &&
2247 git config --file=config --list >actual &&
2248 cat >expect <<-EOF &&
2252 test_cmp expect actual &&
2254 git config --file=config --fixed-value --replace-all fixed.test bogus "$META" &&
2255 git config --file=config --list >actual &&
2256 cat >expect <<-EOF &&
2260 test_cmp expect actual
2263 test_expect_success '--get and --get-all with --fixed-value' '
2264 test_when_finished rm -f config &&
2265 META="a+b*c?d[e]f.g" &&
2266 git config --file=config fixed.test bogus &&
2267 git config --file=config --add fixed.test "$META" &&
2269 git config --file=config --get fixed.test bogus &&
2270 test_must_fail git config --file=config --get fixed.test "$META" &&
2271 git config --file=config --get --fixed-value fixed.test "$META" &&
2272 test_must_fail git config --file=config --get --fixed-value fixed.test non-existent &&
2274 git config --file=config --get-all fixed.test bogus &&
2275 test_must_fail git config --file=config --get-all fixed.test "$META" &&
2276 git config --file=config --get-all --fixed-value fixed.test "$META" &&
2277 test_must_fail git config --file=config --get-all --fixed-value fixed.test non-existent &&
2279 git config --file=config --get-regexp fixed+ bogus &&
2280 test_must_fail git config --file=config --get-regexp fixed+ "$META" &&
2281 git config --file=config --get-regexp --fixed-value fixed+ "$META" &&
2282 test_must_fail git config --file=config --get-regexp --fixed-value fixed+ non-existent