3 # Copyright (c) 2007 Johannes E. Schindelin
6 test_description
='Test commit notes'
10 cat > fake_editor.sh
<< \EOF
15 chmod a
+x fake_editor.sh
16 GIT_EDITOR
=.
/fake_editor.sh
19 test_expect_success
'cannot annotate non-existing HEAD' '
20 (MSG=3 && export MSG && test_must_fail git notes add)
23 test_expect_success setup
'
34 test_expect_success
'need valid notes ref' '
35 (MSG=1 GIT_NOTES_REF=/ && export MSG GIT_NOTES_REF &&
36 test_must_fail git notes add) &&
37 (MSG=2 GIT_NOTES_REF=/ && export MSG GIT_NOTES_REF &&
38 test_must_fail git notes show)
41 test_expect_success
'refusing to add notes in refs/heads/' '
42 (MSG=1 GIT_NOTES_REF=refs/heads/bogus &&
43 export MSG GIT_NOTES_REF &&
44 test_must_fail git notes add)
47 test_expect_success
'refusing to edit notes in refs/remotes/' '
48 (MSG=1 GIT_NOTES_REF=refs/remotes/bogus &&
49 export MSG GIT_NOTES_REF &&
50 test_must_fail git notes edit)
53 # 1 indicates caught gracefully by die, 128 means git-show barked
54 test_expect_success
'handle empty notes gracefully' '
55 test_expect_code 1 git notes show
58 test_expect_success
'show non-existent notes entry with %N' '
63 git show -s --format='A
%n
%NB
' >output &&
64 test_cmp expect output
67 test_expect_success
'create notes' '
68 git config core.notesRef refs/notes/commits &&
69 MSG=b4 git notes add &&
70 test ! -f .git/NOTES_EDITMSG &&
71 test 1 = $(git ls-tree refs/notes/commits | wc -l) &&
72 test b4 = $(git notes show) &&
74 test_must_fail git notes show HEAD^
77 test_expect_success
'show notes entry with %N' '
82 git show -s --format='A
%n
%NB
' >output &&
83 test_cmp expect output
87 d423f8c refs/notes/commits@{0}: notes: Notes added by 'git notes add'
90 test_expect_success
'create reflog entry' '
91 git reflog show refs/notes/commits >output &&
92 test_cmp expect output
95 test_expect_success
'edit existing notes' '
96 MSG=b3 git notes edit &&
97 test ! -f .git/NOTES_EDITMSG &&
98 test 1 = $(git ls-tree refs/notes/commits | wc -l) &&
99 test b3 = $(git notes show) &&
101 test_must_fail git notes show HEAD^
104 test_expect_success
'cannot add note where one exists' '
105 ! MSG=b2 git notes add &&
106 test ! -f .git/NOTES_EDITMSG &&
107 test 1 = $(git ls-tree refs/notes/commits | wc -l) &&
108 test b3 = $(git notes show) &&
110 test_must_fail git notes show HEAD^
113 test_expect_success
'can overwrite existing note with "git notes add -f"' '
114 MSG=b1 git notes add -f &&
115 test ! -f .git/NOTES_EDITMSG &&
116 test 1 = $(git ls-tree refs/notes/commits | wc -l) &&
117 test b1 = $(git notes show) &&
119 test_must_fail git notes show HEAD^
123 commit 268048bfb8a1fb38e703baceb8ab235421bf80c5
124 Author: A U Thor <author@example.com>
125 Date: Thu Apr 7 15:14:13 2005 -0700
133 test_expect_success
'show notes' '
134 ! (git cat-file commit HEAD | grep b1) &&
135 git log -1 > output &&
136 test_cmp expect output
139 test_expect_success
'create multi-line notes (setup)' '
146 d3d3d3" git notes add
149 cat > expect-multiline
<< EOF
150 commit 1584215f1d29c65e99c6c6848626553fdd07fd75
151 Author: A U Thor <author@example.com>
152 Date: Thu Apr 7 15:15:13 2005 -0700
162 printf "\n" >> expect-multiline
163 cat expect
>> expect-multiline
165 test_expect_success
'show multi-line notes' '
166 git log -2 > output &&
167 test_cmp expect-multiline output
169 test_expect_success
'create -F notes (setup)' '
174 echo "xyzzy" > note5 &&
175 git notes add -F note5
178 cat > expect-F
<< EOF
179 commit 15023535574ded8b1a89052b32673f84cf9582b8
180 Author: A U Thor <author@example.com>
181 Date: Thu Apr 7 15:16:13 2005 -0700
189 printf "\n" >> expect-F
190 cat expect-multiline
>> expect-F
192 test_expect_success
'show -F notes' '
193 git log -3 > output &&
194 test_cmp expect-F output
198 commit 15023535574ded8b1a89052b32673f84cf9582b8
199 tree e070e3af51011e47b183c33adf9736736a525709
200 parent 1584215f1d29c65e99c6c6848626553fdd07fd75
201 author A U Thor <author@example.com> 1112912173 -0700
202 committer C O Mitter <committer@example.com> 1112912173 -0700
206 test_expect_success
'git log --pretty=raw does not show notes' '
207 git log -1 --pretty=raw >output &&
208 test_cmp expect output
216 test_expect_success
'git log --show-notes' '
217 git log -1 --pretty=raw --show-notes >output &&
218 test_cmp expect output
221 test_expect_success
'git log --no-notes' '
222 git log -1 --no-notes >output &&
226 test_expect_success
'git format-patch does not show notes' '
227 git format-patch -1 --stdout >output &&
231 test_expect_success
'git format-patch --show-notes does show notes' '
232 git format-patch --show-notes -1 --stdout >output &&
237 "" --pretty --pretty=raw
--pretty=short
--pretty=medium \
238 --pretty=full
--pretty=fuller
--pretty=format
:%s
--oneline
241 "") p
= not
= negate
="" ;;
242 ?
*) p
="$pretty" not
=" not" negate
="!" ;;
244 test_expect_success
"git show $pretty does$not show notes" '
245 git show $p >output &&
246 eval "$negate grep xyzzy output"
250 test_expect_success
'create -m notes (setup)' '
255 git notes add -m spam -m "foo
261 cat > expect-m
<< EOF
262 commit bd1753200303d0a0344be813e504253b3d98e74d
263 Author: A U Thor <author@example.com>
264 Date: Thu Apr 7 15:17:13 2005 -0700
276 printf "\n" >> expect-m
277 cat expect-F
>> expect-m
279 test_expect_success
'show -m notes' '
280 git log -4 > output &&
281 test_cmp expect-m output
284 test_expect_success
'remove note with add -f -F /dev/null (setup)' '
285 git notes add -f -F /dev/null
288 cat > expect-rm-F
<< EOF
289 commit bd1753200303d0a0344be813e504253b3d98e74d
290 Author: A U Thor <author@example.com>
291 Date: Thu Apr 7 15:17:13 2005 -0700
296 printf "\n" >> expect-rm-F
297 cat expect-F
>> expect-rm-F
299 test_expect_success
'verify note removal with -F /dev/null' '
300 git log -4 > output &&
301 test_cmp expect-rm-F output &&
302 test_must_fail git notes show
305 test_expect_success
'do not create empty note with -m "" (setup)' '
309 test_expect_success
'verify non-creation of note with -m ""' '
310 git log -4 > output &&
311 test_cmp expect-rm-F output &&
312 test_must_fail git notes show
315 cat > expect-combine_m_and_F
<< EOF
327 test_expect_success
'create note with combination of -m and -F' '
328 echo "xyzzy" > note_a &&
329 echo "zyxxy" > note_b &&
330 git notes add -m "foo" -F note_a -m "bar" -F note_b -m "baz" &&
331 git notes show > output &&
332 test_cmp expect-combine_m_and_F output
335 test_expect_success
'remove note with "git notes remove" (setup)' '
336 git notes remove HEAD^ &&
340 cat > expect-rm-remove
<< EOF
341 commit bd1753200303d0a0344be813e504253b3d98e74d
342 Author: A U Thor <author@example.com>
343 Date: Thu Apr 7 15:17:13 2005 -0700
347 commit 15023535574ded8b1a89052b32673f84cf9582b8
348 Author: A U Thor <author@example.com>
349 Date: Thu Apr 7 15:16:13 2005 -0700
354 printf "\n" >> expect-rm-remove
355 cat expect-multiline
>> expect-rm-remove
357 test_expect_success
'verify note removal with "git notes remove"' '
358 git log -4 > output &&
359 test_cmp expect-rm-remove output &&
360 test_must_fail git notes show HEAD^
364 c18dc024e14f08d18d14eea0d747ff692d66d6a3 1584215f1d29c65e99c6c6848626553fdd07fd75
365 c9c6af7f78bc47490dbf3e822cf2f3c24d4b9061 268048bfb8a1fb38e703baceb8ab235421bf80c5
368 test_expect_success
'removing non-existing note should not create new commit' '
369 git rev-parse --verify refs/notes/commits > before_commit &&
370 test_must_fail git notes remove HEAD^ &&
371 git rev-parse --verify refs/notes/commits > after_commit &&
372 test_cmp before_commit after_commit
375 test_expect_success
'list notes with "git notes list"' '
376 git notes list > output &&
377 test_cmp expect output
380 test_expect_success
'list notes with "git notes"' '
381 git notes > output &&
382 test_cmp expect output
386 c18dc024e14f08d18d14eea0d747ff692d66d6a3
389 test_expect_success
'list specific note with "git notes list <object>"' '
390 git notes list HEAD^^ > output &&
391 test_cmp expect output
397 test_expect_success
'listing non-existing notes fails' '
398 test_must_fail git notes list HEAD > output &&
399 test_cmp expect output
405 More notes appended with git notes append
408 test_expect_success
'append to existing note with "git notes append"' '
409 git notes add -m "Initial set of notes" &&
410 git notes append -m "More notes appended with git notes append" &&
411 git notes show > output &&
412 test_cmp expect output
415 cat > expect_list
<< EOF
416 c18dc024e14f08d18d14eea0d747ff692d66d6a3 1584215f1d29c65e99c6c6848626553fdd07fd75
417 c9c6af7f78bc47490dbf3e822cf2f3c24d4b9061 268048bfb8a1fb38e703baceb8ab235421bf80c5
418 4b6ad22357cc8a1296720574b8d2fbc22fab0671 bd1753200303d0a0344be813e504253b3d98e74d
421 test_expect_success
'"git notes list" does not expand to "git notes list HEAD"' '
422 git notes list > output &&
423 test_cmp expect_list output
426 test_expect_success
'appending empty string does not change existing note' '
427 git notes append -m "" &&
428 git notes show > output &&
429 test_cmp expect output
432 test_expect_success
'git notes append == add when there is no existing note' '
433 git notes remove HEAD &&
434 test_must_fail git notes list HEAD &&
435 git notes append -m "Initial set of notes
437 More notes appended with git notes append" &&
438 git notes show > output &&
439 test_cmp expect output
442 test_expect_success
'appending empty string to non-existing note does not create note' '
443 git notes remove HEAD &&
444 test_must_fail git notes list HEAD &&
445 git notes append -m "" &&
446 test_must_fail git notes list HEAD
449 test_expect_success
'create other note on a different notes ref (setup)' '
454 GIT_NOTES_REF="refs/notes/other" git notes add -m "other note"
457 cat > expect-other
<< EOF
458 commit 387a89921c73d7ed72cd94d179c1c7048ca47756
459 Author: A U Thor <author@example.com>
460 Date: Thu Apr 7 15:18:13 2005 -0700
468 cat > expect-not-other
<< EOF
469 commit 387a89921c73d7ed72cd94d179c1c7048ca47756
470 Author: A U Thor <author@example.com>
471 Date: Thu Apr 7 15:18:13 2005 -0700
476 test_expect_success
'Do not show note on other ref by default' '
477 git log -1 > output &&
478 test_cmp expect-not-other output
481 test_expect_success
'Do show note when ref is given in GIT_NOTES_REF' '
482 GIT_NOTES_REF="refs/notes/other" git log -1 > output &&
483 test_cmp expect-other output
486 test_expect_success
'Do show note when ref is given in core.notesRef config' '
487 git config core.notesRef "refs/notes/other" &&
488 git log -1 > output &&
489 test_cmp expect-other output
492 test_expect_success
'Do not show note when core.notesRef is overridden' '
493 GIT_NOTES_REF="refs/notes/wrong" git log -1 > output &&
494 test_cmp expect-not-other output
497 cat > expect-both
<< EOF
498 commit 387a89921c73d7ed72cd94d179c1c7048ca47756
499 Author: A U Thor <author@example.com>
500 Date: Thu Apr 7 15:18:13 2005 -0700
510 commit bd1753200303d0a0344be813e504253b3d98e74d
511 Author: A U Thor <author@example.com>
512 Date: Thu Apr 7 15:17:13 2005 -0700
517 replacement for deleted note
520 test_expect_success
'Show all notes when notes.displayRef=refs/notes/*' '
521 GIT_NOTES_REF=refs/notes/commits git notes add \
522 -m"replacement for deleted note" HEAD^ &&
523 GIT_NOTES_REF=refs/notes/commits git notes add -m"order test" &&
524 git config --unset core.notesRef &&
525 git config notes.displayRef "refs/notes/*" &&
526 git log -2 > output &&
527 test_cmp expect-both output
530 test_expect_success
'core.notesRef is implicitly in notes.displayRef' '
531 git config core.notesRef refs/notes/commits &&
532 git config notes.displayRef refs/notes/other &&
533 git log -2 > output &&
534 test_cmp expect-both output
537 test_expect_success
'notes.displayRef can be given more than once' '
538 git config --unset core.notesRef &&
539 git config notes.displayRef refs/notes/commits &&
540 git config --add notes.displayRef refs/notes/other &&
541 git log -2 > output &&
542 test_cmp expect-both output
545 cat > expect-both-reversed
<< EOF
546 commit 387a89921c73d7ed72cd94d179c1c7048ca47756
547 Author: A U Thor <author@example.com>
548 Date: Thu Apr 7 15:18:13 2005 -0700
559 test_expect_success
'notes.displayRef respects order' '
560 git config core.notesRef refs/notes/other &&
561 git config --unset-all notes.displayRef &&
562 git config notes.displayRef refs/notes/commits &&
563 git log -1 > output &&
564 test_cmp expect-both-reversed output
567 test_expect_success
'GIT_NOTES_DISPLAY_REF works' '
568 git config --unset-all core.notesRef &&
569 git config --unset-all notes.displayRef &&
570 GIT_NOTES_DISPLAY_REF=refs/notes/commits:refs/notes/other \
571 git log -2 > output &&
572 test_cmp expect-both output
575 cat > expect-none
<< EOF
576 commit 387a89921c73d7ed72cd94d179c1c7048ca47756
577 Author: A U Thor <author@example.com>
578 Date: Thu Apr 7 15:18:13 2005 -0700
582 commit bd1753200303d0a0344be813e504253b3d98e74d
583 Author: A U Thor <author@example.com>
584 Date: Thu Apr 7 15:17:13 2005 -0700
589 test_expect_success
'GIT_NOTES_DISPLAY_REF overrides config' '
590 git config notes.displayRef "refs/notes/*" &&
591 GIT_NOTES_REF= GIT_NOTES_DISPLAY_REF= git log -2 > output &&
592 test_cmp expect-none output
595 test_expect_success
'--show-notes=* adds to GIT_NOTES_DISPLAY_REF' '
596 GIT_NOTES_REF= GIT_NOTES_DISPLAY_REF= git log --show-notes=* -2 > output &&
597 test_cmp expect-both output
600 cat > expect-commits
<< EOF
601 commit 387a89921c73d7ed72cd94d179c1c7048ca47756
602 Author: A U Thor <author@example.com>
603 Date: Thu Apr 7 15:18:13 2005 -0700
611 test_expect_success
'--no-standard-notes' '
612 git log --no-standard-notes --show-notes=commits -1 > output &&
613 test_cmp expect-commits output
616 test_expect_success
'--standard-notes' '
617 git log --no-standard-notes --show-notes=commits \
618 --standard-notes -2 > output &&
619 test_cmp expect-both output
622 test_expect_success
'--show-notes=ref accumulates' '
623 git log --show-notes=other --show-notes=commits \
624 --no-standard-notes -1 > output &&
625 test_cmp expect-both-reversed output
628 test_expect_success
'Allow notes on non-commits (trees, blobs, tags)' '
629 git config core.notesRef refs/notes/other &&
630 echo "Note on a tree" > expect &&
631 git notes add -m "Note on a tree" HEAD: &&
632 git notes show HEAD: > actual &&
633 test_cmp expect actual &&
634 echo "Note on a blob" > expect &&
635 filename=$(git ls-tree --name-only HEAD | head -n1) &&
636 git notes add -m "Note on a blob" HEAD:$filename &&
637 git notes show HEAD:$filename > actual &&
638 test_cmp expect actual &&
639 echo "Note on a tag" > expect &&
640 git tag -a -m "This is an annotated tag" foobar HEAD^ &&
641 git notes add -m "Note on a tag" foobar &&
642 git notes show foobar > actual &&
643 test_cmp expect actual
647 commit 2ede89468182a62d0bde2583c736089bcf7d7e92
648 Author: A U Thor <author@example.com>
649 Date: Thu Apr 7 15:19:13 2005 -0700
657 test_expect_success
'create note from other note with "git notes add -C"' '
662 git notes add -C $(git notes list HEAD^) &&
663 git log -1 > actual &&
664 test_cmp expect actual &&
665 test "$(git notes list HEAD)" = "$(git notes list HEAD^)"
668 test_expect_success
'create note from non-existing note with "git notes add -C" fails' '
673 test_must_fail git notes add -C deadbeef &&
674 test_must_fail git notes list HEAD
678 commit 016e982bad97eacdbda0fcbd7ce5b0ba87c81f1b
679 Author: A U Thor <author@example.com>
680 Date: Thu Apr 7 15:21:13 2005 -0700
688 test_expect_success
'create note from other note with "git notes add -c"' '
693 MSG="yet another note" git notes add -c $(git notes list HEAD^^) &&
694 git log -1 > actual &&
695 test_cmp expect actual
698 test_expect_success
'create note from non-existing note with "git notes add -c" fails' '
702 git commit -m 10th &&
704 MSG="yet another note" &&
706 test_must_fail git notes add -c deadbeef
708 test_must_fail git notes list HEAD
712 commit 016e982bad97eacdbda0fcbd7ce5b0ba87c81f1b
713 Author: A U Thor <author@example.com>
714 Date: Thu Apr 7 15:21:13 2005 -0700
724 test_expect_success
'append to note from other note with "git notes append -C"' '
725 git notes append -C $(git notes list HEAD^) HEAD^ &&
726 git log -1 HEAD^ > actual &&
727 test_cmp expect actual
731 commit ffed603236bfa3891c49644257a83598afe8ae5a
732 Author: A U Thor <author@example.com>
733 Date: Thu Apr 7 15:22:13 2005 -0700
741 test_expect_success
'create note from other note with "git notes append -c"' '
742 MSG="other note" git notes append -c $(git notes list HEAD^) &&
743 git log -1 > actual &&
744 test_cmp expect actual
748 commit ffed603236bfa3891c49644257a83598afe8ae5a
749 Author: A U Thor <author@example.com>
750 Date: Thu Apr 7 15:22:13 2005 -0700
760 test_expect_success
'append to note from other note with "git notes append -c"' '
761 MSG="yet another note" git notes append -c $(git notes list HEAD) &&
762 git log -1 > actual &&
763 test_cmp expect actual
767 commit 6352c5e33dbcab725fe0579be16aa2ba8eb369be
768 Author: A U Thor <author@example.com>
769 Date: Thu Apr 7 15:23:13 2005 -0700
779 test_expect_success
'copy note with "git notes copy"' '
783 git commit -m 11th &&
784 git notes copy HEAD^ HEAD &&
785 git log -1 > actual &&
786 test_cmp expect actual &&
787 test "$(git notes list HEAD)" = "$(git notes list HEAD^)"
790 test_expect_success
'prevent overwrite with "git notes copy"' '
791 test_must_fail git notes copy HEAD~2 HEAD &&
792 git log -1 > actual &&
793 test_cmp expect actual &&
794 test "$(git notes list HEAD)" = "$(git notes list HEAD^)"
798 commit 6352c5e33dbcab725fe0579be16aa2ba8eb369be
799 Author: A U Thor <author@example.com>
800 Date: Thu Apr 7 15:23:13 2005 -0700
810 test_expect_success
'allow overwrite with "git notes copy -f"' '
811 git notes copy -f HEAD~2 HEAD &&
812 git log -1 > actual &&
813 test_cmp expect actual &&
814 test "$(git notes list HEAD)" = "$(git notes list HEAD~2)"
817 test_expect_success
'cannot copy note from object without notes' '
821 git commit -m 12th &&
825 git commit -m 13th &&
826 test_must_fail git notes copy HEAD^ HEAD
830 commit e5d4fb5698d564ab8c73551538ecaf2b0c666185
831 Author: A U Thor <author@example.com>
832 Date: Thu Apr 7 15:25:13 2005 -0700
841 commit 7038787dfe22a14c3867ce816dbba39845359719
842 Author: A U Thor <author@example.com>
843 Date: Thu Apr 7 15:24:13 2005 -0700
853 test_expect_success
'git notes copy --stdin' '
854 (echo $(git rev-parse HEAD~3) $(git rev-parse HEAD^); \
855 echo $(git rev-parse HEAD~2) $(git rev-parse HEAD)) |
856 git notes copy --stdin &&
857 git log -2 > output &&
858 test_cmp expect output &&
859 test "$(git notes list HEAD)" = "$(git notes list HEAD~2)" &&
860 test "$(git notes list HEAD^)" = "$(git notes list HEAD~3)"
864 commit 37a0d4cba38afef96ba54a3ea567e6dac575700b
865 Author: A U Thor <author@example.com>
866 Date: Thu Apr 7 15:27:13 2005 -0700
870 commit be28d8b4d9951ad940d229ee3b0b9ee3b1ec273d
871 Author: A U Thor <author@example.com>
872 Date: Thu Apr 7 15:26:13 2005 -0700
877 test_expect_success
'git notes copy --for-rewrite (unconfigured)' '
880 (echo $(git rev-parse HEAD~3) $(git rev-parse HEAD^); \
881 echo $(git rev-parse HEAD~2) $(git rev-parse HEAD)) |
882 git notes copy --for-rewrite=foo &&
883 git log -2 > output &&
884 test_cmp expect output
888 commit 37a0d4cba38afef96ba54a3ea567e6dac575700b
889 Author: A U Thor <author@example.com>
890 Date: Thu Apr 7 15:27:13 2005 -0700
899 commit be28d8b4d9951ad940d229ee3b0b9ee3b1ec273d
900 Author: A U Thor <author@example.com>
901 Date: Thu Apr 7 15:26:13 2005 -0700
911 test_expect_success
'git notes copy --for-rewrite (enabled)' '
912 git config notes.rewriteMode overwrite &&
913 git config notes.rewriteRef "refs/notes/*" &&
914 (echo $(git rev-parse HEAD~3) $(git rev-parse HEAD^); \
915 echo $(git rev-parse HEAD~2) $(git rev-parse HEAD)) |
916 git notes copy --for-rewrite=foo &&
917 git log -2 > output &&
918 test_cmp expect output
921 test_expect_success
'git notes copy --for-rewrite (disabled)' '
922 git config notes.rewrite.bar false &&
923 echo $(git rev-parse HEAD~3) $(git rev-parse HEAD) |
924 git notes copy --for-rewrite=bar &&
925 git log -2 > output &&
926 test_cmp expect output
930 commit 37a0d4cba38afef96ba54a3ea567e6dac575700b
931 Author: A U Thor <author@example.com>
932 Date: Thu Apr 7 15:27:13 2005 -0700
940 test_expect_success
'git notes copy --for-rewrite (overwrite)' '
941 git notes add -f -m"a fresh note" HEAD^ &&
942 echo $(git rev-parse HEAD^) $(git rev-parse HEAD) |
943 git notes copy --for-rewrite=foo &&
944 git log -1 > output &&
945 test_cmp expect output
948 test_expect_success
'git notes copy --for-rewrite (ignore)' '
949 git config notes.rewriteMode ignore &&
950 echo $(git rev-parse HEAD^) $(git rev-parse HEAD) |
951 git notes copy --for-rewrite=foo &&
952 git log -1 > output &&
953 test_cmp expect output
957 commit 37a0d4cba38afef96ba54a3ea567e6dac575700b
958 Author: A U Thor <author@example.com>
959 Date: Thu Apr 7 15:27:13 2005 -0700
969 test_expect_success
'git notes copy --for-rewrite (append)' '
970 git notes add -f -m"another fresh note" HEAD^ &&
971 git config notes.rewriteMode concatenate &&
972 echo $(git rev-parse HEAD^) $(git rev-parse HEAD) |
973 git notes copy --for-rewrite=foo &&
974 git log -1 > output &&
975 test_cmp expect output
979 commit 37a0d4cba38afef96ba54a3ea567e6dac575700b
980 Author: A U Thor <author@example.com>
981 Date: Thu Apr 7 15:27:13 2005 -0700
995 test_expect_success
'git notes copy --for-rewrite (append two to one)' '
996 git notes add -f -m"append 1" HEAD^ &&
997 git notes add -f -m"append 2" HEAD^^ &&
998 (echo $(git rev-parse HEAD^) $(git rev-parse HEAD);
999 echo $(git rev-parse HEAD^^) $(git rev-parse HEAD)) |
1000 git notes copy --for-rewrite=foo &&
1001 git log -1 > output &&
1002 test_cmp expect output
1005 test_expect_success
'git notes copy --for-rewrite (append empty)' '
1006 git notes remove HEAD^ &&
1007 echo $(git rev-parse HEAD^) $(git rev-parse HEAD) |
1008 git notes copy --for-rewrite=foo &&
1009 git log -1 > output &&
1010 test_cmp expect output
1014 commit 37a0d4cba38afef96ba54a3ea567e6dac575700b
1015 Author: A U Thor <author@example.com>
1016 Date: Thu Apr 7 15:27:13 2005 -0700
1024 test_expect_success
'GIT_NOTES_REWRITE_MODE works' '
1025 git notes add -f -m"replacement note 1" HEAD^ &&
1026 echo $(git rev-parse HEAD^) $(git rev-parse HEAD) |
1027 GIT_NOTES_REWRITE_MODE=overwrite git notes copy --for-rewrite=foo &&
1028 git log -1 > output &&
1029 test_cmp expect output
1033 commit 37a0d4cba38afef96ba54a3ea567e6dac575700b
1034 Author: A U Thor <author@example.com>
1035 Date: Thu Apr 7 15:27:13 2005 -0700
1043 test_expect_success
'GIT_NOTES_REWRITE_REF works' '
1044 git config notes.rewriteMode overwrite &&
1045 git notes add -f -m"replacement note 2" HEAD^ &&
1046 git config --unset-all notes.rewriteRef &&
1047 echo $(git rev-parse HEAD^) $(git rev-parse HEAD) |
1048 GIT_NOTES_REWRITE_REF=refs/notes/commits:refs/notes/other \
1049 git notes copy --for-rewrite=foo &&
1050 git log -1 > output &&
1051 test_cmp expect output
1054 test_expect_success
'GIT_NOTES_REWRITE_REF overrides config' '
1055 git config notes.rewriteRef refs/notes/other &&
1056 git notes add -f -m"replacement note 3" HEAD^ &&
1057 echo $(git rev-parse HEAD^) $(git rev-parse HEAD) |
1058 GIT_NOTES_REWRITE_REF= git notes copy --for-rewrite=foo &&
1059 git log -1 > output &&
1060 test_cmp expect output
1063 test_expect_success
'git notes copy diagnoses too many or too few parameters' '
1064 test_must_fail git notes copy &&
1065 test_must_fail git notes copy one two three
1068 test_expect_success
'git notes get-ref (no overrides)' '
1069 git config --unset core.notesRef &&
1070 sane_unset GIT_NOTES_REF &&
1071 test "$(git notes get-ref)" = "refs/notes/commits"
1074 test_expect_success
'git notes get-ref (core.notesRef)' '
1075 git config core.notesRef refs/notes/foo &&
1076 test "$(git notes get-ref)" = "refs/notes/foo"
1079 test_expect_success
'git notes get-ref (GIT_NOTES_REF)' '
1080 test "$(GIT_NOTES_REF=refs/notes/bar git notes get-ref)" = "refs/notes/bar"
1083 test_expect_success
'git notes get-ref (--ref)' '
1084 test "$(GIT_NOTES_REF=refs/notes/bar git notes --ref=baz get-ref)" = "refs/notes/baz"