]> git.ipfire.org Git - thirdparty/git.git/blame - t/t7502-commit-porcelain.sh
Merge branch 'ab/detox-gettext-tests'
[thirdparty/git.git] / t / t7502-commit-porcelain.sh
CommitLineData
b468f0ce
JH
1#!/bin/sh
2
3test_description='git commit porcelain-ish'
4
1e2ae142 5GIT_TEST_DEFAULT_INITIAL_BRANCH_NAME=main
334afbc7
JS
6export GIT_TEST_DEFAULT_INITIAL_BRANCH_NAME
7
b468f0ce
JH
8. ./test-lib.sh
9
51fb3a3d
RT
10commit_msg_is () {
11 expect=commit_msg_is.expect
12 actual=commit_msg_is.actual
13
14 printf "%s" "$(git log --pretty=format:%s%b -1)" >$actual &&
15 printf "%s" "$1" >$expect &&
1108cea7 16 test_cmp $expect $actual
51fb3a3d
RT
17}
18
cee9f2b3 19# Arguments: [<prefix] [<commit message>] [<commit options>]
fc6fa0d0
TRC
20check_summary_oneline() {
21 test_tick &&
94ca361b
DL
22 git commit ${3+"$3"} -m "$2" >raw &&
23 head -n 1 raw >act &&
fc6fa0d0
TRC
24
25 # branch name
26 SUMMARY_PREFIX="$(git name-rev --name-only HEAD)" &&
27
28 # append the "special" prefix, like "root-commit", "detached HEAD"
29 if test -n "$1"
30 then
31 SUMMARY_PREFIX="$SUMMARY_PREFIX ($1)"
32 fi
33
34 # abbrev SHA-1
35 SUMMARY_POSTFIX="$(git log -1 --pretty='format:%h')"
36 echo "[$SUMMARY_PREFIX $SUMMARY_POSTFIX] $2" >exp &&
37
1108cea7 38 test_cmp exp act
fc6fa0d0
TRC
39}
40
41test_expect_success 'output summary format' '
42
43 echo new >file1 &&
44 git add file1 &&
45 check_summary_oneline "root-commit" "initial" &&
46
47 echo change >>file1 &&
7f5673d7
ÆAB
48 git add file1
49'
50
51test_expect_success 'output summary format: root-commit' '
fc6fa0d0
TRC
52 check_summary_oneline "" "a change"
53'
54
a45e1a87 55test_expect_success 'output summary format for commit with an empty diff' '
cee9f2b3
TRC
56
57 check_summary_oneline "" "empty" "--allow-empty"
58'
59
a45e1a87 60test_expect_success 'output summary format for merges' '
cee9f2b3
TRC
61
62 git checkout -b recursive-base &&
63 test_commit base file1 &&
64
65 git checkout -b recursive-a recursive-base &&
66 test_commit commit-a file1 &&
67
68 git checkout -b recursive-b recursive-base &&
69 test_commit commit-b file1 &&
70
71 # conflict
72 git checkout recursive-a &&
73 test_must_fail git merge recursive-b &&
74 # resolve the conflict
94ca361b 75 echo commit-a >file1 &&
cee9f2b3
TRC
76 git add file1 &&
77 check_summary_oneline "" "Merge"
78'
79
fc6fa0d0
TRC
80output_tests_cleanup() {
81 # this is needed for "do not fire editor in the presence of conflicts"
1e2ae142 82 git checkout main &&
fc6fa0d0
TRC
83
84 # this is needed for the "partial removal" test to pass
85 git rm file1 &&
86 git commit -m "cleanup"
87}
88
b468f0ce
JH
89test_expect_success 'the basics' '
90
fc6fa0d0
TRC
91 output_tests_cleanup &&
92
b468f0ce
JH
93 echo doing partial >"commit is" &&
94 mkdir not &&
95 echo very much encouraged but we should >not/forbid &&
96 git add "commit is" not &&
97 echo update added "commit is" file >"commit is" &&
98 echo also update another >not/forbid &&
99 test_tick &&
100 git commit -a -m "initial with -a" &&
101
102 git cat-file blob HEAD:"commit is" >current.1 &&
103 git cat-file blob HEAD:not/forbid >current.2 &&
104
105 cmp current.1 "commit is" &&
106 cmp current.2 not/forbid
107
108'
109
110test_expect_success 'partial' '
111
112 echo another >"commit is" &&
113 echo another >not/forbid &&
114 test_tick &&
115 git commit -m "partial commit to handle a file" "commit is" &&
116
117 changed=$(git diff-tree --name-only HEAD^ HEAD) &&
118 test "$changed" = "commit is"
119
120'
121
e8f30160 122test_expect_success 'partial modification in a subdirectory' '
b468f0ce
JH
123
124 test_tick &&
125 git commit -m "partial commit to subdirectory" not &&
126
127 changed=$(git diff-tree -r --name-only HEAD^ HEAD) &&
128 test "$changed" = "not/forbid"
129
130'
131
132test_expect_success 'partial removal' '
133
134 git rm not/forbid &&
135 git commit -m "partial commit to remove not/forbid" not &&
136
137 changed=$(git diff-tree -r --name-only HEAD^ HEAD) &&
138 test "$changed" = "not/forbid" &&
139 remain=$(git ls-tree -r --name-only HEAD) &&
140 test "$remain" = "commit is"
141
142'
143
144test_expect_success 'sign off' '
145
146 >positive &&
147 git add positive &&
148 git commit -s -m "thank you" &&
94ca361b
DL
149 git cat-file commit HEAD >commit.msg &&
150 sed -ne "s/Signed-off-by: //p" commit.msg >actual &&
151 git var GIT_COMMITTER_IDENT >ident &&
152 sed -e "s/>.*/>/" ident >expected &&
153 test_cmp expected actual
b468f0ce
JH
154
155'
156
157test_expect_success 'multiple -m' '
158
159 >negative &&
160 git add negative &&
161 git commit -m "one" -m "two" -m "three" &&
94ca361b
DL
162 actual=$(git cat-file commit HEAD >tmp && sed -e "1,/^\$/d" tmp && rm tmp) &&
163 expected=$(test_write_lines "one" "" "two" "" "three") &&
b468f0ce
JH
164 test "z$actual" = "z$expected"
165
166'
167
168test_expect_success 'verbose' '
169
170 echo minus >negative &&
171 git add negative &&
94ca361b
DL
172 git status -v >raw &&
173 sed -ne "/^diff --git /p" raw >actual &&
b468f0ce 174 echo "diff --git a/negative b/negative" >expect &&
82ebb0b6 175 test_cmp expect actual
b468f0ce
JH
176
177'
178
4f672ad6
JK
179test_expect_success 'verbose respects diff config' '
180
0fcf760e 181 test_config diff.noprefix true &&
4f672ad6 182 git status -v >actual &&
0fcf760e 183 grep "diff --git negative negative" actual
4f672ad6
JK
184'
185
5b012c80
BC
186mesg_with_comment_and_newlines='
187# text
188
189'
190
191test_expect_success 'prepare file with comment line and trailing newlines' '
192 printf "%s" "$mesg_with_comment_and_newlines" >expect
193'
194
51fb3a3d 195test_expect_success 'cleanup commit messages (verbatim option,-t)' '
5f065737
AR
196
197 echo >>negative &&
67dabab0 198 git commit --cleanup=verbatim --no-status -t expect -a &&
94ca361b
DL
199 git cat-file -p HEAD >raw &&
200 sed -e "1,/^\$/d" raw >actual &&
82ebb0b6 201 test_cmp expect actual
5f065737
AR
202
203'
204
51fb3a3d 205test_expect_success 'cleanup commit messages (verbatim option,-F)' '
5f065737
AR
206
207 echo >>negative &&
208 git commit --cleanup=verbatim -F expect -a &&
94ca361b
DL
209 git cat-file -p HEAD >raw &&
210 sed -e "1,/^\$/d" raw >actual &&
82ebb0b6 211 test_cmp expect actual
5f065737
AR
212
213'
214
a24a41ea 215test_expect_success 'cleanup commit messages (verbatim option,-m)' '
5f065737
AR
216
217 echo >>negative &&
5b012c80 218 git commit --cleanup=verbatim -m "$mesg_with_comment_and_newlines" -a &&
94ca361b
DL
219 git cat-file -p HEAD >raw &&
220 sed -e "1,/^\$/d" raw >actual &&
82ebb0b6 221 test_cmp expect actual
5f065737
AR
222
223'
224
51fb3a3d 225test_expect_success 'cleanup commit messages (whitespace option,-F)' '
5f065737
AR
226
227 echo >>negative &&
94ca361b 228 test_write_lines "" "# text" "" >text &&
5f065737
AR
229 echo "# text" >expect &&
230 git commit --cleanup=whitespace -F text -a &&
94ca361b
DL
231 git cat-file -p HEAD >raw &&
232 sed -e "1,/^\$/d" raw >actual &&
82ebb0b6 233 test_cmp expect actual
5f065737
AR
234
235'
236
75df1f43
NTND
237test_expect_success 'cleanup commit messages (scissors option,-F,-e)' '
238
239 echo >>negative &&
94ca361b 240 cat >text <<-\EOF &&
75df1f43 241
94ca361b 242 # to be kept
fbfa0973 243
94ca361b
DL
244 # ------------------------ >8 ------------------------
245 # to be kept, too
246 # ------------------------ >8 ------------------------
247 to be removed
248 # ------------------------ >8 ------------------------
249 to be removed, too
250 EOF
fbfa0973 251
94ca361b
DL
252 cat >expect <<-\EOF &&
253 # to be kept
fbfa0973 254
94ca361b
DL
255 # ------------------------ >8 ------------------------
256 # to be kept, too
257 EOF
75df1f43 258 git commit --cleanup=scissors -e -F text -a &&
94ca361b
DL
259 git cat-file -p HEAD >raw &&
260 sed -e "1,/^\$/d" raw >actual &&
75df1f43 261 test_cmp expect actual
fbfa0973 262'
75df1f43 263
fbfa0973
SG
264test_expect_success 'cleanup commit messages (scissors option,-F,-e, scissors on first line)' '
265
266 echo >>negative &&
94ca361b
DL
267 cat >text <<-\EOF &&
268 # ------------------------ >8 ------------------------
269 to be removed
270 EOF
fbfa0973 271 git commit --cleanup=scissors -e -F text -a --allow-empty-message &&
94ca361b
DL
272 git cat-file -p HEAD >raw &&
273 sed -e "1,/^\$/d" raw >actual &&
fbfa0973 274 test_must_be_empty actual
75df1f43
NTND
275'
276
51fb3a3d 277test_expect_success 'cleanup commit messages (strip option,-F)' '
5f065737
AR
278
279 echo >>negative &&
94ca361b 280 test_write_lines "" "# text" "sample" "" >text &&
5f065737
AR
281 echo sample >expect &&
282 git commit --cleanup=strip -F text -a &&
94ca361b
DL
283 git cat-file -p HEAD >raw &&
284 sed -e "1,/^\$/d" raw >actual &&
82ebb0b6 285 test_cmp expect actual
5f065737
AR
286
287'
288
51fb3a3d 289test_expect_success 'cleanup commit messages (strip option,-F,-e)' '
5f065737
AR
290
291 echo >>negative &&
94ca361b 292 test_write_lines "" "sample" "" >text &&
5f065737 293 git commit -e -F text -a &&
0b430a17
ÆAB
294 head -n 4 .git/COMMIT_EDITMSG >actual
295'
296
297echo "sample
5f065737 298
0b430a17
ÆAB
299# Please enter the commit message for your changes. Lines starting
300# with '#' will be ignored, and an empty message aborts the commit." >expect
301
51fb3a3d 302test_expect_success 'cleanup commit messages (strip option,-F,-e): output' '
1108cea7 303 test_cmp expect actual
5f065737
AR
304'
305
51fb3a3d
RT
306test_expect_success 'cleanup commit message (fail on invalid cleanup mode option)' '
307 test_must_fail git commit --cleanup=non-existent
308'
309
310test_expect_success 'cleanup commit message (fail on invalid cleanup mode configuration)' '
311 test_must_fail git -c commit.cleanup=non-existent commit
312'
313
314test_expect_success 'cleanup commit message (no config and no option uses default)' '
315 echo content >>file &&
316 git add file &&
24e099f4
BC
317 (
318 test_set_editor "$TEST_DIRECTORY"/t7500/add-content-and-comment &&
319 git commit --no-status
320 ) &&
51fb3a3d
RT
321 commit_msg_is "commit message"
322'
323
324test_expect_success 'cleanup commit message (option overrides default)' '
325 echo content >>file &&
326 git add file &&
24e099f4
BC
327 (
328 test_set_editor "$TEST_DIRECTORY"/t7500/add-content-and-comment &&
329 git commit --cleanup=whitespace --no-status
330 ) &&
51fb3a3d
RT
331 commit_msg_is "commit message # comment"
332'
333
334test_expect_success 'cleanup commit message (config overrides default)' '
335 echo content >>file &&
336 git add file &&
24e099f4
BC
337 (
338 test_set_editor "$TEST_DIRECTORY"/t7500/add-content-and-comment &&
339 git -c commit.cleanup=whitespace commit --no-status
340 ) &&
51fb3a3d
RT
341 commit_msg_is "commit message # comment"
342'
343
344test_expect_success 'cleanup commit message (option overrides config)' '
345 echo content >>file &&
346 git add file &&
24e099f4
BC
347 (
348 test_set_editor "$TEST_DIRECTORY"/t7500/add-content-and-comment &&
349 git -c commit.cleanup=whitespace commit --cleanup=default
350 ) &&
51fb3a3d
RT
351 commit_msg_is "commit message"
352'
353
354test_expect_success 'cleanup commit message (default, -m)' '
355 echo content >>file &&
356 git add file &&
357 git commit -m "message #comment " &&
358 commit_msg_is "message #comment"
359'
360
361test_expect_success 'cleanup commit message (whitespace option, -m)' '
362 echo content >>file &&
363 git add file &&
364 git commit --cleanup=whitespace --no-status -m "message #comment " &&
365 commit_msg_is "message #comment"
366'
367
368test_expect_success 'cleanup commit message (whitespace config, -m)' '
369 echo content >>file &&
370 git add file &&
371 git -c commit.cleanup=whitespace commit --no-status -m "message #comment " &&
372 commit_msg_is "message #comment"
373'
374
1f4bf345 375test_expect_success 'message shows author when it is not equal to committer' '
e83dbe80 376 echo >>negative &&
ceacd91a 377 git commit -e -m "sample" -a &&
1f4bf345
JK
378 test_i18ngrep \
379 "^# Author: *A U Thor <author@example.com>\$" \
380 .git/COMMIT_EDITMSG
e83dbe80
SB
381'
382
b7242b8c
JK
383test_expect_success 'message shows date when it is explicitly set' '
384 git commit --allow-empty -e -m foo --date="2010-01-02T03:04:05" &&
385 test_i18ngrep \
386 "^# Date: *Sat Jan 2 03:04:05 2010 +0000" \
387 .git/COMMIT_EDITMSG
388'
389
1d7dc264 390test_expect_success AUTOIDENT 'message shows committer when it is automatic' '
bb1ae3f6
SB
391
392 echo >>negative &&
7845944c 393 (
00648ba0
EN
394 sane_unset GIT_COMMITTER_EMAIL &&
395 sane_unset GIT_COMMITTER_NAME &&
1d7dc264 396 git commit -e -m "sample" -a
7845944c 397 ) &&
1f4bf345
JK
398 # the ident is calculated from the system, so we cannot
399 # check the actual value, only that it is there
400 test_i18ngrep "^# Committer: " .git/COMMIT_EDITMSG
bb1ae3f6
SB
401'
402
a9ebc43b 403write_script .git/FAKE_EDITOR <<EOF
94ca361b 404echo editor started >"$(pwd)/.git/result"
ec84bd00
PB
405exit 0
406EOF
ec84bd00 407
cf7a8515 408test_expect_success !FAIL_PREREQS,!AUTOIDENT 'do not fire editor when committer is bogus' '
f84df81f 409 >.git/result &&
8c8b3bc3
JK
410
411 echo >>negative &&
412 (
413 sane_unset GIT_COMMITTER_EMAIL &&
414 sane_unset GIT_COMMITTER_NAME &&
415 GIT_EDITOR="\"$(pwd)/.git/FAKE_EDITOR\"" &&
416 export GIT_EDITOR &&
417 test_must_fail git commit -e -m sample -a
418 ) &&
d3c6751b 419 test_must_be_empty .git/result
8c8b3bc3
JK
420'
421
25206778
RS
422test_expect_success 'do not fire editor if -m <msg> was given' '
423 echo tick >file &&
424 git add file &&
425 echo "editor not started" >.git/result &&
426 (GIT_EDITOR="\"$(pwd)/.git/FAKE_EDITOR\"" git commit -m tick) &&
427 test "$(cat .git/result)" = "editor not started"
428'
429
430test_expect_success 'do not fire editor if -m "" was given' '
431 echo tock >file &&
432 git add file &&
433 echo "editor not started" >.git/result &&
434 (GIT_EDITOR="\"$(pwd)/.git/FAKE_EDITOR\"" \
435 git commit -m "" --allow-empty-message) &&
436 test "$(cat .git/result)" = "editor not started"
437'
438
ec84bd00
PB
439test_expect_success 'do not fire editor in the presence of conflicts' '
440
a3c91e08
JH
441 git clean -f &&
442 echo f >g &&
443 git add g &&
444 git commit -m "add g" &&
445 git branch second &&
1e2ae142 446 echo main >g &&
a3c91e08
JH
447 echo g >h &&
448 git add g h &&
449 git commit -m "modify g and add h" &&
450 git checkout second &&
451 echo second >g &&
452 git add g &&
453 git commit -m second &&
454 # Must fail due to conflict
1e2ae142 455 test_must_fail git cherry-pick -n main &&
a3c91e08 456 echo "editor not started" >.git/result &&
e2007832 457 (
34565f27 458 GIT_EDITOR="\"$(pwd)/.git/FAKE_EDITOR\"" &&
e2007832
BC
459 export GIT_EDITOR &&
460 test_must_fail git commit
461 ) &&
a3c91e08 462 test "$(cat .git/result)" = "editor not started"
ec84bd00
PB
463'
464
a9ebc43b 465write_script .git/FAKE_EDITOR <<EOF
ad5fa3cc
PB
466# kill -TERM command added below.
467EOF
468
fb9a2bea 469test_expect_success EXECKEEPSPID 'a SIGTERM should break locks' '
ad5fa3cc 470 echo >>negative &&
09b78bc1 471 ! "$SHELL_PATH" -c '\''
94ca361b 472 echo kill -TERM $$ >>.git/FAKE_EDITOR
09b78bc1
BC
473 GIT_EDITOR=.git/FAKE_EDITOR
474 export GIT_EDITOR
475 exec git commit -a'\'' &&
476 test ! -f .git/index.lock
ad5fa3cc
PB
477'
478
67bfc030
JH
479rm -f .git/MERGE_MSG .git/COMMIT_EDITMSG
480git reset -q --hard
481
482test_expect_success 'Hand committing of a redundant merge removes dups' '
483
1e2ae142
JS
484 git rev-parse second main >expect &&
485 test_must_fail git merge second main &&
486 git checkout main g &&
67bfc030 487 EDITOR=: git commit -a &&
94ca361b
DL
488 git cat-file commit HEAD >raw &&
489 sed -n -e "s/^parent //p" -e "/^$/q" raw >actual &&
67bfc030
JH
490 test_cmp expect actual
491
492'
493
e5138436
JH
494test_expect_success 'A single-liner subject with a token plus colon is not a footer' '
495
496 git reset --hard &&
497 git commit -s -m "hello: kitty" --allow-empty &&
94ca361b
DL
498 git cat-file commit HEAD >raw &&
499 sed -e "1,/^$/d" raw >actual &&
3fb0459b 500 test_line_count = 3 actual
e5138436
JH
501
502'
503
8c613fd5
BC
504test_expect_success 'commit -s places sob on third line after two empty lines' '
505 git commit -s --allow-empty --allow-empty-message &&
506 cat <<-EOF >expect &&
507
508
509 Signed-off-by: $GIT_COMMITTER_NAME <$GIT_COMMITTER_EMAIL>
510
511 EOF
512 sed -e "/^#/d" -e "s/^:.*//" .git/COMMIT_EDITMSG >actual &&
513 test_cmp expect actual
514'
515
a9ebc43b
JK
516write_script .git/FAKE_EDITOR <<\EOF
517mv "$1" "$1.orig"
f9c01817
JH
518(
519 echo message
a9ebc43b
JK
520 cat "$1.orig"
521) >"$1"
f9c01817
JH
522EOF
523
524echo '## Custom template' >template
525
f9c01817
JH
526try_commit () {
527 git reset --hard &&
528 echo >>negative &&
529 GIT_EDITOR=.git/FAKE_EDITOR git commit -a $* $use_template &&
530 case "$use_template" in
531 '')
f79ce8db 532 test_i18ngrep ! "^## Custom template" .git/COMMIT_EDITMSG ;;
f9c01817 533 *)
f79ce8db 534 test_i18ngrep "^## Custom template" .git/COMMIT_EDITMSG ;;
f9c01817
JH
535 esac
536}
537
538try_commit_status_combo () {
539
f79ce8db 540 test_expect_success 'commit' '
f9c01817 541 try_commit "" &&
f79ce8db 542 test_i18ngrep "^# Changes to be committed:" .git/COMMIT_EDITMSG
f9c01817
JH
543 '
544
f79ce8db 545 test_expect_success 'commit --status' '
f9c01817 546 try_commit --status &&
f79ce8db 547 test_i18ngrep "^# Changes to be committed:" .git/COMMIT_EDITMSG
f9c01817
JH
548 '
549
f79ce8db 550 test_expect_success 'commit --no-status' '
2dec68cf 551 try_commit --no-status &&
f79ce8db 552 test_i18ngrep ! "^# Changes to be committed:" .git/COMMIT_EDITMSG
f9c01817
JH
553 '
554
f79ce8db 555 test_expect_success 'commit with commit.status = yes' '
e023a31d 556 test_config commit.status yes &&
f9c01817 557 try_commit "" &&
f79ce8db 558 test_i18ngrep "^# Changes to be committed:" .git/COMMIT_EDITMSG
f9c01817
JH
559 '
560
f79ce8db 561 test_expect_success 'commit with commit.status = no' '
e023a31d 562 test_config commit.status no &&
f9c01817 563 try_commit "" &&
f79ce8db 564 test_i18ngrep ! "^# Changes to be committed:" .git/COMMIT_EDITMSG
f9c01817
JH
565 '
566
f79ce8db 567 test_expect_success 'commit --status with commit.status = yes' '
e023a31d 568 test_config commit.status yes &&
f9c01817 569 try_commit --status &&
f79ce8db 570 test_i18ngrep "^# Changes to be committed:" .git/COMMIT_EDITMSG
f9c01817
JH
571 '
572
f79ce8db 573 test_expect_success 'commit --no-status with commit.status = yes' '
e023a31d 574 test_config commit.status yes &&
f9c01817 575 try_commit --no-status &&
f79ce8db 576 test_i18ngrep ! "^# Changes to be committed:" .git/COMMIT_EDITMSG
f9c01817
JH
577 '
578
f79ce8db 579 test_expect_success 'commit --status with commit.status = no' '
e023a31d 580 test_config commit.status no &&
f9c01817 581 try_commit --status &&
f79ce8db 582 test_i18ngrep "^# Changes to be committed:" .git/COMMIT_EDITMSG
f9c01817
JH
583 '
584
f79ce8db 585 test_expect_success 'commit --no-status with commit.status = no' '
e023a31d 586 test_config commit.status no &&
f9c01817 587 try_commit --no-status &&
f79ce8db 588 test_i18ngrep ! "^# Changes to be committed:" .git/COMMIT_EDITMSG
f9c01817
JH
589 '
590
591}
592
593try_commit_status_combo
594
595use_template="-t template"
596
597try_commit_status_combo
598
eff80a9f 599test_expect_success 'commit --status with custom comment character' '
464be630 600 test_config core.commentchar ";" &&
eff80a9f
JH
601 try_commit --status &&
602 test_i18ngrep "^; Changes to be committed:" .git/COMMIT_EDITMSG
603'
604
84c9dc2c
NTND
605test_expect_success 'switch core.commentchar' '
606 test_commit "#foo" foo &&
607 GIT_EDITOR=.git/FAKE_EDITOR git -c core.commentChar=auto commit --amend &&
608 test_i18ngrep "^; Changes to be committed:" .git/COMMIT_EDITMSG
609'
610
611test_expect_success 'switch core.commentchar but out of options' '
612 cat >text <<\EOF &&
613# 1
614; 2
615@ 3
616! 4
617$ 5
618% 6
619^ 7
620& 8
621| 9
622: 10
623EOF
624 git commit --amend -F text &&
625 (
626 test_set_editor .git/FAKE_EDITOR &&
627 test_must_fail git -c core.commentChar=auto commit --amend
628 )
629'
630
b468f0ce 631test_done