3 test_description
='git log'
7 test_expect_success setup
'
12 git commit -m initial &&
17 git commit -m second &&
21 git commit -m third &&
26 git commit -m fourth &&
32 git commit -m fifth &&
40 printf "sixth\nfifth\nfourth\nthird\nsecond\ninitial" > expect
41 test_expect_success
'pretty' '
43 git log --pretty="format:%s" > actual &&
44 test_cmp expect actual
47 printf "sixth\nfifth\nfourth\nthird\nsecond\ninitial\n" > expect
48 test_expect_success
'pretty (tformat)' '
50 git log --pretty="tformat:%s" > actual &&
51 test_cmp expect actual
54 test_expect_success
'pretty (shortcut)' '
56 git log --pretty="%s" > actual &&
57 test_cmp expect actual
60 test_expect_success
'format' '
62 git log --format="%s" > actual &&
63 test_cmp expect actual
75 test_expect_success
'format %w(11,1,2)' '
77 git log -2 --format="%w(11,1,2)This is the %s commit." > actual &&
78 test_cmp expect actual
81 test_expect_success
'format %w(,1,2)' '
83 git log -2 --format="%w(,1,2)This is%nthe %s%ncommit." > actual &&
84 test_cmp expect actual
95 test_expect_success
'oneline' '
97 git log --oneline > actual &&
98 test_cmp expect actual
101 test_expect_success
'diff-filter=A' '
103 git log --pretty="format:%s" --diff-filter=A HEAD > actual &&
104 git log --pretty="format:%s" --diff-filter A HEAD > actual-separate &&
105 printf "fifth\nfourth\nthird\ninitial" > expect &&
106 test_cmp expect actual &&
107 test_cmp expect actual-separate
111 test_expect_success
'diff-filter=M' '
113 actual=$(git log --pretty="format:%s" --diff-filter=M HEAD) &&
114 expect=$(echo second) &&
115 test "$actual" = "$expect" || {
117 echo "Actual: $actual"
123 test_expect_success
'diff-filter=D' '
125 actual=$(git log --pretty="format:%s" --diff-filter=D HEAD) &&
126 expect=$(echo sixth ; echo third) &&
127 test "$actual" = "$expect" || {
129 echo "Actual: $actual"
135 test_expect_success
'diff-filter=R' '
137 actual=$(git log -M --pretty="format:%s" --diff-filter=R HEAD) &&
138 expect=$(echo third) &&
139 test "$actual" = "$expect" || {
141 echo "Actual: $actual"
147 test_expect_success
'diff-filter=C' '
149 actual=$(git log -C -C --pretty="format:%s" --diff-filter=C HEAD) &&
150 expect=$(echo fourth) &&
151 test "$actual" = "$expect" || {
153 echo "Actual: $actual"
159 test_expect_success
'git log --follow' '
161 actual=$(git log --follow --pretty="format:%s" ichi) &&
162 expect=$(echo third ; echo second ; echo initial) &&
163 test "$actual" = "$expect" || {
165 echo "Actual: $actual"
176 test_expect_success
'git log --no-walk <commits> sorts by commit time' '
177 git log --no-walk --oneline 5d31159 804a787 394ef78 > actual &&
178 test_cmp expect actual
181 test_expect_success
'git log --no-walk=sorted <commits> sorts by commit time' '
182 git log --no-walk=sorted --oneline 5d31159 804a787 394ef78 > actual &&
183 test_cmp expect actual
191 test_expect_success
'git log --no-walk=unsorted <commits> leaves list of commits as given' '
192 git log --no-walk=unsorted --oneline 5d31159 804a787 394ef78 > actual &&
193 test_cmp expect actual
196 test_expect_success
'git show <commits> leaves list of commits as given' '
197 git show --oneline -s 5d31159 804a787 394ef78 > actual &&
198 test_cmp expect actual
201 test_expect_success
'setup case sensitivity tests' '
205 git commit -a -m Second
208 test_expect_success
'log --grep' '
209 echo second >expect &&
210 git log -1 --pretty="tformat:%s" --grep=sec >actual &&
211 test_cmp expect actual
214 test_expect_success
'log --grep option parsing' '
215 echo second >expect &&
216 git log -1 --pretty="tformat:%s" --grep sec >actual &&
217 test_cmp expect actual &&
218 test_must_fail git log -1 --pretty="tformat:%s" --grep
221 test_expect_success
'log -i --grep' '
222 echo Second >expect &&
223 git log -1 --pretty="tformat:%s" -i --grep=sec >actual &&
224 test_cmp expect actual
227 test_expect_success
'log --grep -i' '
228 echo Second >expect &&
229 git log -1 --pretty="tformat:%s" --grep=sec -i >actual &&
230 test_cmp expect actual
233 test_expect_success
'log -F -E --grep=<ere> uses ere' '
234 echo second >expect &&
235 git log -1 --pretty="tformat:%s" -F -E --grep=s.c.nd >actual &&
236 test_cmp expect actual
249 test_expect_success
'simple log --graph' '
250 git log --graph --pretty=tformat:%s >actual &&
251 test_cmp expect actual
254 test_expect_success
'set up merge history' '
255 git checkout -b side HEAD~4 &&
256 test_commit side-1 1 1 &&
257 test_commit side-2 2 2 &&
258 git checkout master &&
263 * Merge branch
'side'
277 test_expect_success
'log --graph with merge' '
278 git log --graph --date-order --pretty=tformat:%s |
279 sed "s/ *\$//" >actual &&
280 test_cmp expect actual
283 test_expect_success
'log --raw --graph -m with merge' '
284 git log --raw --graph --oneline -m master | head -n 500 >actual &&
285 grep "initial" actual
288 test_expect_success
'diff-tree --graph' '
289 git diff-tree --graph master^ | head -n 500 >actual &&
296 | | Author
: A U Thor
<author@example.com
>
298 | | Merge branch
'side'
301 | | Author
: A U Thor
<author@example.com
>
305 |
* commit tags
/side-1
306 | | Author
: A U Thor
<author@example.com
>
311 | | Author
: A U Thor
<author@example.com
>
316 | | Author
: A U Thor
<author@example.com
>
321 | | Author
: A U Thor
<author@example.com
>
326 |
/ Author
: A U Thor
<author@example.com
>
330 * commit tags
/side-1~
1
331 | Author
: A U Thor
<author@example.com
>
335 * commit tags
/side-1~
2
336 | Author
: A U Thor
<author@example.com
>
340 * commit tags
/side-1~
3
341 Author
: A U Thor
<author@example.com
>
346 test_expect_success
'log --graph with full output' '
347 git log --graph --date-order --pretty=short |
348 git name-rev --name-only --stdin |
349 sed "s/Merge:.*/Merge: A B/;s/ *\$//" >actual &&
350 test_cmp expect actual
353 test_expect_success
'set up more tangled history' '
354 git checkout -b tangle HEAD~6 &&
355 test_commit tangle-a tangle-a a &&
356 git merge master~3 &&
358 git checkout master &&
360 git checkout -b reach &&
362 git checkout master &&
363 git checkout -b octopus-a &&
364 test_commit octopus-a &&
365 git checkout master &&
366 git checkout -b octopus-b &&
367 test_commit octopus-b &&
368 git checkout master &&
369 test_commit seventh &&
370 git merge octopus-a octopus-b &&
379 *-. \ Merge tags
'octopus-a' and
'octopus-b'
389 * Merge branch
'tangle'
391 |
* Merge branch
'side' (early part
) into tangle
393 |
* \ Merge branch
'master' (early part
) into tangle
396 * | | | Merge branch
'side'
415 test_expect_success
'log --graph with merge' '
416 git log --graph --date-order --pretty=tformat:%s |
417 sed "s/ *\$//" >actual &&
418 test_cmp expect actual
421 test_expect_success
'log.decorate configuration' '
422 git log --oneline >expect.none &&
423 git log --oneline --decorate >expect.short &&
424 git log --oneline --decorate=full >expect.full &&
426 echo "[log] decorate" >>.git/config &&
427 git log --oneline >actual &&
428 test_cmp expect.short actual &&
430 test_config log.decorate true &&
431 git log --oneline >actual &&
432 test_cmp expect.short actual &&
433 git log --oneline --decorate=full >actual &&
434 test_cmp expect.full actual &&
435 git log --oneline --decorate=no >actual &&
436 test_cmp expect.none actual &&
438 test_config log.decorate no &&
439 git log --oneline >actual &&
440 test_cmp expect.none actual &&
441 git log --oneline --decorate >actual &&
442 test_cmp expect.short actual &&
443 git log --oneline --decorate=full >actual &&
444 test_cmp expect.full actual &&
446 test_config log.decorate 1 &&
447 git log --oneline >actual &&
448 test_cmp expect.short actual &&
449 git log --oneline --decorate=full >actual &&
450 test_cmp expect.full actual &&
451 git log --oneline --decorate=no >actual &&
452 test_cmp expect.none actual &&
454 test_config log.decorate short &&
455 git log --oneline >actual &&
456 test_cmp expect.short actual &&
457 git log --oneline --no-decorate >actual &&
458 test_cmp expect.none actual &&
459 git log --oneline --decorate=full >actual &&
460 test_cmp expect.full actual &&
462 test_config log.decorate full &&
463 git log --oneline >actual &&
464 test_cmp expect.full actual &&
465 git log --oneline --no-decorate >actual &&
466 test_cmp expect.none actual &&
467 git log --oneline --decorate >actual &&
468 test_cmp expect.short actual
470 test_unconfig log.decorate &&
471 git log --pretty=raw >expect.raw &&
472 test_config log.decorate full &&
473 git log --pretty=raw >actual &&
474 test_cmp expect.raw actual
478 test_expect_success
'reflog is expected format' '
479 git log -g --abbrev-commit --pretty=oneline >expect &&
480 git reflog >actual &&
481 test_cmp expect actual
484 test_expect_success
'whatchanged is expected format' '
485 git log --no-merges --raw >expect &&
486 git whatchanged >actual &&
487 test_cmp expect actual
490 test_expect_success
'log.abbrevCommit configuration' '
491 git log --abbrev-commit >expect.log.abbrev &&
492 git log --no-abbrev-commit >expect.log.full &&
493 git log --pretty=raw >expect.log.raw &&
494 git reflog --abbrev-commit >expect.reflog.abbrev &&
495 git reflog --no-abbrev-commit >expect.reflog.full &&
496 git whatchanged --abbrev-commit >expect.whatchanged.abbrev &&
497 git whatchanged --no-abbrev-commit >expect.whatchanged.full &&
499 test_config log.abbrevCommit true &&
502 test_cmp expect.log.abbrev actual &&
503 git log --no-abbrev-commit >actual &&
504 test_cmp expect.log.full actual &&
506 git log --pretty=raw >actual &&
507 test_cmp expect.log.raw actual &&
509 git reflog >actual &&
510 test_cmp expect.reflog.abbrev actual &&
511 git reflog --no-abbrev-commit >actual &&
512 test_cmp expect.reflog.full actual &&
514 git whatchanged >actual &&
515 test_cmp expect.whatchanged.abbrev actual &&
516 git whatchanged --no-abbrev-commit >actual &&
517 test_cmp expect.whatchanged.full actual
520 test_expect_success
'show added path under "--follow -M"' '
521 # This tests for a regression introduced in v1.7.2-rc0~103^2~2
522 test_create_repo regression &&
525 test_commit needs-another-commit &&
526 test_commit foo.bar &&
527 git log -M --follow -p foo.bar.t &&
528 git log -M --follow --stat foo.bar.t &&
529 git log -M --follow --name-only foo.bar.t
533 test_expect_success
'git log -c --follow' '
534 test_create_repo follow-c &&
537 test_commit initial file original &&
539 test_commit rename file2 original &&
540 git reset --hard initial &&
541 test_commit modify file foo &&
542 git merge -m merge rename &&
543 git log -c --follow file2
548 * commit COMMIT_OBJECT_NAME
549 |\ Merge
: MERGE_PARENTS
550 | | Author
: A U Thor
<author@example.com
>
552 | | Merge HEADS DESCRIPTION
554 |
* commit COMMIT_OBJECT_NAME
555 | | Author
: A U Thor
<author@example.com
>
560 | |
1 file changed
, 1 insertion
(+)
562 | |
diff --git a
/reach.t b
/reach.t
563 | | new
file mode
100644
564 | | index
0000000.
.10c9591
571 *-. \ commit COMMIT_OBJECT_NAME
572 |\ \ \ Merge
: MERGE_PARENTS
573 | | | | Author
: A U Thor
<author@example.com
>
575 | | | | Merge HEADS DESCRIPTION
577 | |
* | commit COMMIT_OBJECT_NAME
578 | | |
/ Author
: A U Thor
<author@example.com
>
582 | | | octopus-b.t |
1 +
583 | | |
1 file changed
, 1 insertion
(+)
585 | | |
diff --git a
/octopus-b.t b
/octopus-b.t
586 | | | new
file mode
100644
587 | | | index
0000000..d5fcad0
589 | | |
+++ b
/octopus-b.t
593 |
* | commit COMMIT_OBJECT_NAME
594 | |
/ Author
: A U Thor
<author@example.com
>
598 | | octopus-a.t |
1 +
599 | |
1 file changed
, 1 insertion
(+)
601 | |
diff --git a
/octopus-a.t b
/octopus-a.t
602 | | new
file mode
100644
603 | | index
0000000.
.11ee015
605 | |
+++ b
/octopus-a.t
609 * | commit COMMIT_OBJECT_NAME
610 |
/ Author
: A U Thor
<author@example.com
>
615 |
1 file changed
, 1 insertion
(+)
617 |
diff --git a
/seventh.t b
/seventh.t
618 | new
file mode
100644
619 | index
0000000.
.9744ffc
625 * commit COMMIT_OBJECT_NAME
626 |\ Merge
: MERGE_PARENTS
627 | | Author
: A U Thor
<author@example.com
>
629 | | Merge branch
'tangle'
631 |
* commit COMMIT_OBJECT_NAME
632 | |\ Merge
: MERGE_PARENTS
633 | | | Author
: A U Thor
<author@example.com
>
635 | | | Merge branch
'side' (early part
) into tangle
637 |
* | commit COMMIT_OBJECT_NAME
638 | |\ \ Merge
: MERGE_PARENTS
639 | | | | Author
: A U Thor
<author@example.com
>
641 | | | | Merge branch
'master' (early part
) into tangle
643 |
* | | commit COMMIT_OBJECT_NAME
644 | | | | Author
: A U Thor
<author@example.com
>
648 | | | | tangle-a |
1 +
649 | | | |
1 file changed
, 1 insertion
(+)
651 | | | |
diff --git a
/tangle-a b
/tangle-a
652 | | | | new
file mode
100644
653 | | | | index
0000000.
.7898192
654 | | | |
--- /dev
/null
655 | | | |
+++ b
/tangle-a
656 | | | | @@
-0,0 +1 @@
659 * | | | commit COMMIT_OBJECT_NAME
660 |\ \ \ \ Merge
: MERGE_PARENTS
661 | | | | | Author
: A U Thor
<author@example.com
>
663 | | | | | Merge branch
'side'
665 |
* | | | commit COMMIT_OBJECT_NAME
666 | | |_|
/ Author
: A U Thor
<author@example.com
>
671 | | | |
1 file changed
, 1 insertion
(+)
673 | | | |
diff --git a
/2 b
/2
674 | | | | new
file mode
100644
675 | | | | index
0000000.
.0cfbf08
676 | | | |
--- /dev
/null
678 | | | | @@
-0,0 +1 @@
681 |
* | | commit COMMIT_OBJECT_NAME
682 | | | | Author
: A U Thor
<author@example.com
>
687 | | | |
1 file changed
, 1 insertion
(+)
689 | | | |
diff --git a
/1 b
/1
690 | | | | new
file mode
100644
691 | | | | index
0000000..d00491f
692 | | | |
--- /dev
/null
694 | | | | @@
-0,0 +1 @@
697 * | | | commit COMMIT_OBJECT_NAME
698 | | | | Author
: A U Thor
<author@example.com
>
703 | | | |
1 file changed
, 1 insertion
(+)
705 | | | |
diff --git a
/one b
/one
706 | | | | new
file mode
100644
707 | | | | index
0000000.
.9a33383
708 | | | |
--- /dev
/null
710 | | | | @@
-0,0 +1 @@
713 * | | | commit COMMIT_OBJECT_NAME
714 | |_|
/ Author
: A U Thor
<author@example.com
>
719 | | |
1 file changed
, 1 deletion
(-)
721 | | |
diff --git a
/a
/two b
/a
/two
722 | | | deleted
file mode
100644
723 | | | index
9245af5.
.0000000
729 * | | commit COMMIT_OBJECT_NAME
730 | | | Author
: A U Thor
<author@example.com
>
735 | | |
1 file changed
, 1 insertion
(+)
737 | | |
diff --git a
/a
/two b
/a
/two
738 | | | new
file mode
100644
739 | | | index
0000000.
.9245af5
745 * | | commit COMMIT_OBJECT_NAME
746 |
/ / Author
: A U Thor
<author@example.com
>
751 | |
1 file changed
, 1 insertion
(+)
753 | |
diff --git a
/ein b
/ein
754 | | new
file mode
100644
755 | | index
0000000.
.9d7e69f
761 * | commit COMMIT_OBJECT_NAME
762 |
/ Author
: A U Thor
<author@example.com
>
768 |
2 files changed
, 1 insertion
(+), 1 deletion
(-)
770 |
diff --git a
/ichi b
/ichi
771 | new
file mode
100644
772 | index
0000000.
.9d7e69f
777 |
diff --git a
/one b
/one
778 | deleted
file mode
100644
779 | index
9d7e69f.
.0000000
785 * commit COMMIT_OBJECT_NAME
786 | Author
: A U Thor
<author@example.com
>
791 |
1 file changed
, 1 insertion
(+), 1 deletion
(-)
793 |
diff --git a
/one b
/one
794 | index
5626abf.
.9d7e69f
100644
801 * commit COMMIT_OBJECT_NAME
802 Author
: A U Thor
<author@example.com
>
807 1 file changed
, 1 insertion
(+)
809 diff --git a
/one b
/one
811 index
0000000.
.5626abf
820 -e 's/commit [0-9a-f]*$/commit COMMIT_OBJECT_NAME/' \
821 -e 's/Merge: [ 0-9a-f]*$/Merge: MERGE_PARENTS/' \
822 -e 's/Merge tag.*/Merge HEADS DESCRIPTION/' \
823 -e 's/Merge commit.*/Merge HEADS DESCRIPTION/' \
824 -e 's/, 0 deletions(-)//' \
825 -e 's/, 0 insertions(+)//' \
826 -e 's/ 1 files changed, / 1 file changed, /' \
827 -e 's/, 1 deletions(-)/, 1 deletion(-)/' \
828 -e 's/, 1 insertions(+)/, 1 insertion(+)/'
831 test_expect_success
'log --graph with diff and stats' '
832 git log --graph --pretty=short --stat -p >actual &&
833 sanitize_output >actual.sanitized <actual &&
834 test_i18ncmp expect actual.sanitized
837 test_expect_success
'dotdot is a parent directory' '
839 ( echo sixth && echo fifth ) >expect &&
840 ( cd a/b && git log --format=%s .. ) >actual &&
841 test_cmp expect actual