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
534 * commit COMMIT_OBJECT_NAME
535 |\ Merge
: MERGE_PARENTS
536 | | Author
: A U Thor
<author@example.com
>
538 | | Merge HEADS DESCRIPTION
540 |
* commit COMMIT_OBJECT_NAME
541 | | Author
: A U Thor
<author@example.com
>
546 | |
1 file changed
, 1 insertion
(+)
548 | |
diff --git a
/reach.t b
/reach.t
549 | | new
file mode
100644
550 | | index
0000000.
.10c9591
557 *-. \ commit COMMIT_OBJECT_NAME
558 |\ \ \ Merge
: MERGE_PARENTS
559 | | | | Author
: A U Thor
<author@example.com
>
561 | | | | Merge HEADS DESCRIPTION
563 | |
* | commit COMMIT_OBJECT_NAME
564 | | |
/ Author
: A U Thor
<author@example.com
>
568 | | | octopus-b.t |
1 +
569 | | |
1 file changed
, 1 insertion
(+)
571 | | |
diff --git a
/octopus-b.t b
/octopus-b.t
572 | | | new
file mode
100644
573 | | | index
0000000..d5fcad0
575 | | |
+++ b
/octopus-b.t
579 |
* | commit COMMIT_OBJECT_NAME
580 | |
/ Author
: A U Thor
<author@example.com
>
584 | | octopus-a.t |
1 +
585 | |
1 file changed
, 1 insertion
(+)
587 | |
diff --git a
/octopus-a.t b
/octopus-a.t
588 | | new
file mode
100644
589 | | index
0000000.
.11ee015
591 | |
+++ b
/octopus-a.t
595 * | commit COMMIT_OBJECT_NAME
596 |
/ Author
: A U Thor
<author@example.com
>
601 |
1 file changed
, 1 insertion
(+)
603 |
diff --git a
/seventh.t b
/seventh.t
604 | new
file mode
100644
605 | index
0000000.
.9744ffc
611 * commit COMMIT_OBJECT_NAME
612 |\ Merge
: MERGE_PARENTS
613 | | Author
: A U Thor
<author@example.com
>
615 | | Merge branch
'tangle'
617 |
* commit COMMIT_OBJECT_NAME
618 | |\ Merge
: MERGE_PARENTS
619 | | | Author
: A U Thor
<author@example.com
>
621 | | | Merge branch
'side' (early part
) into tangle
623 |
* | commit COMMIT_OBJECT_NAME
624 | |\ \ Merge
: MERGE_PARENTS
625 | | | | Author
: A U Thor
<author@example.com
>
627 | | | | Merge branch
'master' (early part
) into tangle
629 |
* | | commit COMMIT_OBJECT_NAME
630 | | | | Author
: A U Thor
<author@example.com
>
634 | | | | tangle-a |
1 +
635 | | | |
1 file changed
, 1 insertion
(+)
637 | | | |
diff --git a
/tangle-a b
/tangle-a
638 | | | | new
file mode
100644
639 | | | | index
0000000.
.7898192
640 | | | |
--- /dev
/null
641 | | | |
+++ b
/tangle-a
642 | | | | @@
-0,0 +1 @@
645 * | | | commit COMMIT_OBJECT_NAME
646 |\ \ \ \ Merge
: MERGE_PARENTS
647 | | | | | Author
: A U Thor
<author@example.com
>
649 | | | | | Merge branch
'side'
651 |
* | | | commit COMMIT_OBJECT_NAME
652 | | |_|
/ Author
: A U Thor
<author@example.com
>
657 | | | |
1 file changed
, 1 insertion
(+)
659 | | | |
diff --git a
/2 b
/2
660 | | | | new
file mode
100644
661 | | | | index
0000000.
.0cfbf08
662 | | | |
--- /dev
/null
664 | | | | @@
-0,0 +1 @@
667 |
* | | commit COMMIT_OBJECT_NAME
668 | | | | Author
: A U Thor
<author@example.com
>
673 | | | |
1 file changed
, 1 insertion
(+)
675 | | | |
diff --git a
/1 b
/1
676 | | | | new
file mode
100644
677 | | | | index
0000000..d00491f
678 | | | |
--- /dev
/null
680 | | | | @@
-0,0 +1 @@
683 * | | | commit COMMIT_OBJECT_NAME
684 | | | | Author
: A U Thor
<author@example.com
>
689 | | | |
1 file changed
, 1 insertion
(+)
691 | | | |
diff --git a
/one b
/one
692 | | | | new
file mode
100644
693 | | | | index
0000000.
.9a33383
694 | | | |
--- /dev
/null
696 | | | | @@
-0,0 +1 @@
699 * | | | commit COMMIT_OBJECT_NAME
700 | |_|
/ Author
: A U Thor
<author@example.com
>
705 | | |
1 file changed
, 1 deletion
(-)
707 | | |
diff --git a
/a
/two b
/a
/two
708 | | | deleted
file mode
100644
709 | | | index
9245af5.
.0000000
715 * | | commit COMMIT_OBJECT_NAME
716 | | | Author
: A U Thor
<author@example.com
>
721 | | |
1 file changed
, 1 insertion
(+)
723 | | |
diff --git a
/a
/two b
/a
/two
724 | | | new
file mode
100644
725 | | | index
0000000.
.9245af5
731 * | | commit COMMIT_OBJECT_NAME
732 |
/ / Author
: A U Thor
<author@example.com
>
737 | |
1 file changed
, 1 insertion
(+)
739 | |
diff --git a
/ein b
/ein
740 | | new
file mode
100644
741 | | index
0000000.
.9d7e69f
747 * | commit COMMIT_OBJECT_NAME
748 |
/ Author
: A U Thor
<author@example.com
>
754 |
2 files changed
, 1 insertion
(+), 1 deletion
(-)
756 |
diff --git a
/ichi b
/ichi
757 | new
file mode
100644
758 | index
0000000.
.9d7e69f
763 |
diff --git a
/one b
/one
764 | deleted
file mode
100644
765 | index
9d7e69f.
.0000000
771 * commit COMMIT_OBJECT_NAME
772 | Author
: A U Thor
<author@example.com
>
777 |
1 file changed
, 1 insertion
(+), 1 deletion
(-)
779 |
diff --git a
/one b
/one
780 | index
5626abf.
.9d7e69f
100644
787 * commit COMMIT_OBJECT_NAME
788 Author
: A U Thor
<author@example.com
>
793 1 file changed
, 1 insertion
(+)
795 diff --git a
/one b
/one
797 index
0000000.
.5626abf
806 -e 's/commit [0-9a-f]*$/commit COMMIT_OBJECT_NAME/' \
807 -e 's/Merge: [ 0-9a-f]*$/Merge: MERGE_PARENTS/' \
808 -e 's/Merge tag.*/Merge HEADS DESCRIPTION/' \
809 -e 's/Merge commit.*/Merge HEADS DESCRIPTION/' \
810 -e 's/, 0 deletions(-)//' \
811 -e 's/, 0 insertions(+)//' \
812 -e 's/ 1 files changed, / 1 file changed, /' \
813 -e 's/, 1 deletions(-)/, 1 deletion(-)/' \
814 -e 's/, 1 insertions(+)/, 1 insertion(+)/'
817 test_expect_success
'log --graph with diff and stats' '
818 git log --graph --pretty=short --stat -p >actual &&
819 sanitize_output >actual.sanitized <actual &&
820 test_i18ncmp expect actual.sanitized
823 test_expect_success
'dotdot is a parent directory' '
825 ( echo sixth && echo fifth ) >expect &&
826 ( cd a/b && git log --format=%s .. ) >actual &&
827 test_cmp expect actual