Merge branch 'sg/travis-check-untracked'
[git.git] / t / t7501-commit.sh
blobfa61b1a4ee4a1d5ba457cb30e5cc045f724ed503
1 #!/bin/sh
3 # Copyright (c) 2007 Kristian Høgsberg <krh@redhat.com>
6 # FIXME: Test the various index usages, -i and -o, test reflog,
7 # signoff
9 test_description='git commit'
10 . ./test-lib.sh
11 . "$TEST_DIRECTORY/diff-lib.sh"
13 author='The Real Author <someguy@his.email.org>'
15 test_tick
17 test_expect_success 'initial status' '
18 echo bongo bongo >file &&
19 git add file &&
20 git status >actual &&
21 test_i18ngrep "No commits yet" actual
24 test_expect_success 'fail initial amend' '
25 test_must_fail git commit --amend
28 test_expect_success 'setup: initial commit' '
29 git commit -m initial
32 test_expect_success '-m and -F do not mix' '
33 git checkout HEAD file && echo >>file && git add file &&
34 test_must_fail git commit -m foo -m bar -F file
37 test_expect_success '-m and -C do not mix' '
38 git checkout HEAD file && echo >>file && git add file &&
39 test_must_fail git commit -C HEAD -m illegal
42 test_expect_success 'paths and -a do not mix' '
43 echo King of the bongo >file &&
44 test_must_fail git commit -m foo -a file
47 test_expect_success PERL 'can use paths with --interactive' '
48 echo bong-o-bong >file &&
49 # 2: update, 1:st path, that is all, 7: quit
50 ( echo 2; echo 1; echo; echo 7 ) |
51 git commit -m foo --interactive file &&
52 git reset --hard HEAD^
55 test_expect_success 'using invalid commit with -C' '
56 test_must_fail git commit --allow-empty -C bogus
59 test_expect_success 'nothing to commit' '
60 git reset --hard &&
61 test_must_fail git commit -m initial
64 test_expect_success '--dry-run fails with nothing to commit' '
65 test_must_fail git commit -m initial --dry-run
68 test_expect_success '--short fails with nothing to commit' '
69 test_must_fail git commit -m initial --short
72 test_expect_success '--porcelain fails with nothing to commit' '
73 test_must_fail git commit -m initial --porcelain
76 test_expect_success '--long fails with nothing to commit' '
77 test_must_fail git commit -m initial --long
80 test_expect_success 'setup: non-initial commit' '
81 echo bongo bongo bongo >file &&
82 git commit -m next -a
85 test_expect_success '--dry-run with stuff to commit returns ok' '
86 echo bongo bongo bongo >>file &&
87 git commit -m next -a --dry-run
90 test_expect_failure '--short with stuff to commit returns ok' '
91 echo bongo bongo bongo >>file &&
92 git commit -m next -a --short
95 test_expect_failure '--porcelain with stuff to commit returns ok' '
96 echo bongo bongo bongo >>file &&
97 git commit -m next -a --porcelain
100 test_expect_success '--long with stuff to commit returns ok' '
101 echo bongo bongo bongo >>file &&
102 git commit -m next -a --long
105 test_expect_success 'commit message from non-existing file' '
106 echo more bongo: bongo bongo bongo bongo >file &&
107 test_must_fail git commit -F gah -a
110 test_expect_success 'empty commit message' '
111 # Empty except stray tabs and spaces on a few lines.
112 sed -e "s/@//g" >msg <<-\EOF &&
116 @Signed-off-by: hula@
118 test_must_fail git commit -F msg -a
121 test_expect_success 'template "emptyness" check does not kick in with -F' '
122 git checkout HEAD file && echo >>file && git add file &&
123 git commit -t file -F file
126 test_expect_success 'template "emptyness" check' '
127 git checkout HEAD file && echo >>file && git add file &&
128 test_must_fail git commit -t file 2>err &&
129 test_i18ngrep "did not edit" err
132 test_expect_success 'setup: commit message from file' '
133 git checkout HEAD file && echo >>file && git add file &&
134 echo this is the commit message, coming from a file >msg &&
135 git commit -F msg -a
138 test_expect_success 'amend commit' '
139 cat >editor <<-\EOF &&
140 #!/bin/sh
141 sed -e "s/a file/an amend commit/g" < "$1" > "$1-"
142 mv "$1-" "$1"
144 chmod 755 editor &&
145 EDITOR=./editor git commit --amend
148 test_expect_success 'amend --only ignores staged contents' '
149 cp file file.expect &&
150 echo changed >file &&
151 git add file &&
152 git commit --no-edit --amend --only &&
153 git cat-file blob HEAD:file >file.actual &&
154 test_cmp file.expect file.actual &&
155 git diff --exit-code
158 test_expect_success 'allow-empty --only ignores staged contents' '
159 echo changed-again >file &&
160 git add file &&
161 git commit --allow-empty --only -m "empty" &&
162 git cat-file blob HEAD:file >file.actual &&
163 test_cmp file.expect file.actual &&
164 git diff --exit-code
167 test_expect_success 'set up editor' '
168 cat >editor <<-\EOF &&
169 #!/bin/sh
170 sed -e "s/unamended/amended/g" <"$1" >"$1-"
171 mv "$1-" "$1"
173 chmod 755 editor
176 test_expect_success 'amend without launching editor' '
177 echo unamended >expect &&
178 git commit --allow-empty -m "unamended" &&
179 echo needs more bongo >file &&
180 git add file &&
181 EDITOR=./editor git commit --no-edit --amend &&
182 git diff --exit-code HEAD -- file &&
183 git diff-tree -s --format=%s HEAD >msg &&
184 test_cmp expect msg
187 test_expect_success '--amend --edit' '
188 echo amended >expect &&
189 git commit --allow-empty -m "unamended" &&
190 echo bongo again >file &&
191 git add file &&
192 EDITOR=./editor git commit --edit --amend &&
193 git diff-tree -s --format=%s HEAD >msg &&
194 test_cmp expect msg
197 test_expect_success '--amend --edit of empty message' '
198 cat >replace <<-\EOF &&
199 #!/bin/sh
200 echo "amended" >"$1"
202 chmod 755 replace &&
203 git commit --allow-empty --allow-empty-message -m "" &&
204 echo more bongo >file &&
205 git add file &&
206 EDITOR=./replace git commit --edit --amend &&
207 git diff-tree -s --format=%s HEAD >msg &&
208 ./replace expect &&
209 test_cmp expect msg
212 test_expect_success '--amend to set message to empty' '
213 echo bata >file &&
214 git add file &&
215 git commit -m "unamended" &&
216 git commit --amend --allow-empty-message -m "" &&
217 git diff-tree -s --format=%s HEAD >msg &&
218 echo "" >expect &&
219 test_cmp expect msg
222 test_expect_success '--amend to set empty message needs --allow-empty-message' '
223 echo conga >file &&
224 git add file &&
225 git commit -m "unamended" &&
226 test_must_fail git commit --amend -m "" &&
227 git diff-tree -s --format=%s HEAD >msg &&
228 echo "unamended" >expect &&
229 test_cmp expect msg
232 test_expect_success '-m --edit' '
233 echo amended >expect &&
234 git commit --allow-empty -m buffer &&
235 echo bongo bongo >file &&
236 git add file &&
237 EDITOR=./editor git commit -m unamended --edit &&
238 git diff-tree -s --format=%s HEAD >msg &&
239 test_cmp expect msg
242 test_expect_success '-m and -F do not mix' '
243 echo enough with the bongos >file &&
244 test_must_fail git commit -F msg -m amending .
247 test_expect_success 'using message from other commit' '
248 git commit -C HEAD^ .
251 test_expect_success 'editing message from other commit' '
252 cat >editor <<-\EOF &&
253 #!/bin/sh
254 sed -e "s/amend/older/g" < "$1" > "$1-"
255 mv "$1-" "$1"
257 chmod 755 editor &&
258 echo hula hula >file &&
259 EDITOR=./editor git commit -c HEAD^ -a
262 test_expect_success 'message from stdin' '
263 echo silly new contents >file &&
264 echo commit message from stdin |
265 git commit -F - -a
268 test_expect_success 'overriding author from command line' '
269 echo gak >file &&
270 git commit -m author \
271 --author "Rubber Duck <rduck@convoy.org>" -a >output 2>&1 &&
272 grep Rubber.Duck output
275 test_expect_success PERL 'interactive add' '
276 echo 7 |
277 git commit --interactive |
278 grep "What now"
281 test_expect_success PERL "commit --interactive doesn't change index if editor aborts" '
282 echo zoo >file &&
283 test_must_fail git diff --exit-code >diff1 &&
284 (echo u ; echo "*" ; echo q) |
286 EDITOR=: &&
287 export EDITOR &&
288 test_must_fail git commit --interactive
289 ) &&
290 git diff >diff2 &&
291 compare_diff_patch diff1 diff2
294 test_expect_success 'editor not invoked if -F is given' '
295 cat >editor <<-\EOF &&
296 #!/bin/sh
297 sed -e s/good/bad/g <"$1" >"$1-"
298 mv "$1-" "$1"
300 chmod 755 editor &&
302 echo A good commit message. >msg &&
303 echo moo >file &&
305 EDITOR=./editor git commit -a -F msg &&
306 git show -s --pretty=format:%s >subject &&
307 grep -q good subject &&
309 echo quack >file &&
310 echo Another good message. |
311 EDITOR=./editor git commit -a -F - &&
312 git show -s --pretty=format:%s >subject &&
313 grep -q good subject
316 test_expect_success 'partial commit that involves removal (1)' '
318 git rm --cached file &&
319 mv file elif &&
320 git add elif &&
321 git commit -m "Partial: add elif" elif &&
322 git diff-tree --name-status HEAD^ HEAD >current &&
323 echo "A elif" >expected &&
324 test_cmp expected current
328 test_expect_success 'partial commit that involves removal (2)' '
330 git commit -m "Partial: remove file" file &&
331 git diff-tree --name-status HEAD^ HEAD >current &&
332 echo "D file" >expected &&
333 test_cmp expected current
337 test_expect_success 'partial commit that involves removal (3)' '
339 git rm --cached elif &&
340 echo elif >elif &&
341 git commit -m "Partial: modify elif" elif &&
342 git diff-tree --name-status HEAD^ HEAD >current &&
343 echo "M elif" >expected &&
344 test_cmp expected current
348 test_expect_success 'amend commit to fix author' '
350 oldtick=$GIT_AUTHOR_DATE &&
351 test_tick &&
352 git reset --hard &&
353 git cat-file -p HEAD |
354 sed -e "s/author.*/author $author $oldtick/" \
355 -e "s/^\(committer.*> \).*$/\1$GIT_COMMITTER_DATE/" > \
356 expected &&
357 git commit --amend --author="$author" &&
358 git cat-file -p HEAD > current &&
359 test_cmp expected current
363 test_expect_success 'amend commit to fix date' '
365 test_tick &&
366 newtick=$GIT_AUTHOR_DATE &&
367 git reset --hard &&
368 git cat-file -p HEAD |
369 sed -e "s/author.*/author $author $newtick/" \
370 -e "s/^\(committer.*> \).*$/\1$GIT_COMMITTER_DATE/" > \
371 expected &&
372 git commit --amend --date="$newtick" &&
373 git cat-file -p HEAD > current &&
374 test_cmp expected current
378 test_expect_success 'commit mentions forced date in output' '
379 git commit --amend --date=2010-01-02T03:04:05 >output &&
380 grep "Date: *Sat Jan 2 03:04:05 2010" output
383 test_expect_success 'commit complains about completely bogus dates' '
384 test_must_fail git commit --amend --date=seventeen
387 test_expect_success 'commit --date allows approxidate' '
388 git commit --amend \
389 --date="midnight the 12th of october, anno domini 1979" &&
390 echo "Fri Oct 12 00:00:00 1979 +0000" >expect &&
391 git log -1 --format=%ad >actual &&
392 test_cmp expect actual
395 test_expect_success 'sign off (1)' '
397 echo 1 >positive &&
398 git add positive &&
399 git commit -s -m "thank you" &&
400 git cat-file commit HEAD | sed -e "1,/^\$/d" >actual &&
402 echo thank you
403 echo
404 git var GIT_COMMITTER_IDENT |
405 sed -e "s/>.*/>/" -e "s/^/Signed-off-by: /"
406 ) >expected &&
407 test_cmp expected actual
411 test_expect_success 'sign off (2)' '
413 echo 2 >positive &&
414 git add positive &&
415 existing="Signed-off-by: Watch This <watchthis@example.com>" &&
416 git commit -s -m "thank you
418 $existing" &&
419 git cat-file commit HEAD | sed -e "1,/^\$/d" >actual &&
421 echo thank you
422 echo
423 echo $existing
424 git var GIT_COMMITTER_IDENT |
425 sed -e "s/>.*/>/" -e "s/^/Signed-off-by: /"
426 ) >expected &&
427 test_cmp expected actual
431 test_expect_success 'signoff gap' '
433 echo 3 >positive &&
434 git add positive &&
435 alt="Alt-RFC-822-Header: Value" &&
436 git commit -s -m "welcome
438 $alt" &&
439 git cat-file commit HEAD | sed -e "1,/^\$/d" > actual &&
441 echo welcome
442 echo
443 echo $alt
444 git var GIT_COMMITTER_IDENT |
445 sed -e "s/>.*/>/" -e "s/^/Signed-off-by: /"
446 ) >expected &&
447 test_cmp expected actual
450 test_expect_success 'signoff gap 2' '
452 echo 4 >positive &&
453 git add positive &&
454 alt="fixed: 34" &&
455 git commit -s -m "welcome
457 We have now
458 $alt" &&
459 git cat-file commit HEAD | sed -e "1,/^\$/d" > actual &&
461 echo welcome
462 echo
463 echo We have now
464 echo $alt
465 echo
466 git var GIT_COMMITTER_IDENT |
467 sed -e "s/>.*/>/" -e "s/^/Signed-off-by: /"
468 ) >expected &&
469 test_cmp expected actual
472 test_expect_success 'signoff respects trailer config' '
474 echo 5 >positive &&
475 git add positive &&
476 git commit -s -m "subject
478 non-trailer line
479 Myfooter: x" &&
480 git cat-file commit HEAD | sed -e "1,/^\$/d" > actual &&
482 echo subject
483 echo
484 echo non-trailer line
485 echo Myfooter: x
486 echo
487 echo "Signed-off-by: $GIT_COMMITTER_NAME <$GIT_COMMITTER_EMAIL>"
488 ) >expected &&
489 test_cmp expected actual &&
491 echo 6 >positive &&
492 git add positive &&
493 git -c "trailer.Myfooter.ifexists=add" commit -s -m "subject
495 non-trailer line
496 Myfooter: x" &&
497 git cat-file commit HEAD | sed -e "1,/^\$/d" > actual &&
499 echo subject
500 echo
501 echo non-trailer line
502 echo Myfooter: x
503 echo "Signed-off-by: $GIT_COMMITTER_NAME <$GIT_COMMITTER_EMAIL>"
504 ) >expected &&
505 test_cmp expected actual
508 test_expect_success 'multiple -m' '
510 >negative &&
511 git add negative &&
512 git commit -m "one" -m "two" -m "three" &&
513 git cat-file commit HEAD | sed -e "1,/^\$/d" >actual &&
515 echo one
516 echo
517 echo two
518 echo
519 echo three
520 ) >expected &&
521 test_cmp expected actual
525 test_expect_success 'amend commit to fix author' '
527 oldtick=$GIT_AUTHOR_DATE &&
528 test_tick &&
529 git reset --hard &&
530 git cat-file -p HEAD |
531 sed -e "s/author.*/author $author $oldtick/" \
532 -e "s/^\(committer.*> \).*$/\1$GIT_COMMITTER_DATE/" > \
533 expected &&
534 git commit --amend --author="$author" &&
535 git cat-file -p HEAD > current &&
536 test_cmp expected current
540 test_expect_success 'git commit <file> with dirty index' '
541 echo tacocat > elif &&
542 echo tehlulz > chz &&
543 git add chz &&
544 git commit elif -m "tacocat is a palindrome" &&
545 git show --stat | grep elif &&
546 git diff --cached | grep chz
549 test_expect_success 'same tree (single parent)' '
551 git reset --hard &&
552 test_must_fail git commit -m empty
556 test_expect_success 'same tree (single parent) --allow-empty' '
558 git commit --allow-empty -m "forced empty" &&
559 git cat-file commit HEAD | grep forced
563 test_expect_success 'same tree (merge and amend merge)' '
565 git checkout -b side HEAD^ &&
566 echo zero >zero &&
567 git add zero &&
568 git commit -m "add zero" &&
569 git checkout master &&
571 git merge -s ours side -m "empty ok" &&
572 git diff HEAD^ HEAD >actual &&
573 : >expected &&
574 test_cmp expected actual &&
576 git commit --amend -m "empty really ok" &&
577 git diff HEAD^ HEAD >actual &&
578 : >expected &&
579 test_cmp expected actual
583 test_expect_success 'amend using the message from another commit' '
585 git reset --hard &&
586 test_tick &&
587 git commit --allow-empty -m "old commit" &&
588 old=$(git rev-parse --verify HEAD) &&
589 test_tick &&
590 git commit --allow-empty -m "new commit" &&
591 new=$(git rev-parse --verify HEAD) &&
592 test_tick &&
593 git commit --allow-empty --amend -C "$old" &&
594 git show --pretty="format:%ad %s" "$old" >expected &&
595 git show --pretty="format:%ad %s" HEAD >actual &&
596 test_cmp expected actual
600 test_expect_success 'amend using the message from a commit named with tag' '
602 git reset --hard &&
603 test_tick &&
604 git commit --allow-empty -m "old commit" &&
605 old=$(git rev-parse --verify HEAD) &&
606 git tag -a -m "tag on old" tagged-old HEAD &&
607 test_tick &&
608 git commit --allow-empty -m "new commit" &&
609 new=$(git rev-parse --verify HEAD) &&
610 test_tick &&
611 git commit --allow-empty --amend -C tagged-old &&
612 git show --pretty="format:%ad %s" "$old" >expected &&
613 git show --pretty="format:%ad %s" HEAD >actual &&
614 test_cmp expected actual
618 test_expect_success 'amend can copy notes' '
620 git config notes.rewrite.amend true &&
621 git config notes.rewriteRef "refs/notes/*" &&
622 test_commit foo &&
623 git notes add -m"a note" &&
624 test_tick &&
625 git commit --amend -m"new foo" &&
626 test "$(git notes show)" = "a note"
630 test_expect_success 'commit a file whose name is a dash' '
631 git reset --hard &&
632 for i in 1 2 3 4 5
634 echo $i
635 done >./- &&
636 git add ./- &&
637 test_tick &&
638 git commit -m "add dash" >output </dev/null &&
639 test_i18ngrep " changed, 5 insertions" output
642 test_expect_success '--only works on to-be-born branch' '
643 # This test relies on having something in the index, as it
644 # would not otherwise actually prove much. So check this.
645 test -n "$(git ls-files)" &&
646 git checkout --orphan orphan &&
647 echo foo >newfile &&
648 git add newfile &&
649 git commit --only newfile -m"--only on unborn branch" &&
650 echo newfile >expected &&
651 git ls-tree -r --name-only HEAD >actual &&
652 test_cmp expected actual
655 test_expect_success '--dry-run with conflicts fixed from a merge' '
656 # setup two branches with conflicting information
657 # in the same file, resolve the conflict,
658 # call commit with --dry-run
659 echo "Initial contents, unimportant" >test-file &&
660 git add test-file &&
661 git commit -m "Initial commit" &&
662 echo "commit-1-state" >test-file &&
663 git commit -m "commit 1" -i test-file &&
664 git tag commit-1 &&
665 git checkout -b branch-2 HEAD^1 &&
666 echo "commit-2-state" >test-file &&
667 git commit -m "commit 2" -i test-file &&
668 ! $(git merge --no-commit commit-1) &&
669 echo "commit-2-state" >test-file &&
670 git add test-file &&
671 git commit --dry-run &&
672 git commit -m "conflicts fixed from merge."
675 test_done