Start the 2.46 cycle
[git/gitster.git] / t / t9350-fast-export.sh
blob1eb035ee4ce547d059e07c43f04102e66ebcb000
1 #!/bin/sh
3 # Copyright (c) 2007 Johannes E. Schindelin
6 test_description='git fast-export'
7 GIT_TEST_DEFAULT_INITIAL_BRANCH_NAME=main
8 export GIT_TEST_DEFAULT_INITIAL_BRANCH_NAME
10 . ./test-lib.sh
12 test_expect_success 'setup' '
14 echo break it > file0 &&
15 git add file0 &&
16 test_tick &&
17 echo Wohlauf > file &&
18 git add file &&
19 test_tick &&
20 git commit -m initial &&
21 echo die Luft > file &&
22 echo geht frisch > file2 &&
23 git add file file2 &&
24 test_tick &&
25 git commit -m second &&
26 echo und > file2 &&
27 test_tick &&
28 git commit -m third file2 &&
29 test_tick &&
30 git tag rein &&
31 git checkout -b wer HEAD^ &&
32 echo lange > file2 &&
33 test_tick &&
34 git commit -m sitzt file2 &&
35 test_tick &&
36 git tag -a -m valentin muss &&
37 git merge -s ours main
41 test_expect_success 'fast-export | fast-import' '
43 MAIN=$(git rev-parse --verify main) &&
44 REIN=$(git rev-parse --verify rein) &&
45 WER=$(git rev-parse --verify wer) &&
46 MUSS=$(git rev-parse --verify muss) &&
47 mkdir new &&
48 git --git-dir=new/.git init &&
49 git fast-export --all >actual &&
50 (cd new &&
51 git fast-import &&
52 test $MAIN = $(git rev-parse --verify refs/heads/main) &&
53 test $REIN = $(git rev-parse --verify refs/tags/rein) &&
54 test $WER = $(git rev-parse --verify refs/heads/wer) &&
55 test $MUSS = $(git rev-parse --verify refs/tags/muss)) <actual
59 test_expect_success 'fast-export ^muss^{commit} muss' '
60 git fast-export --tag-of-filtered-object=rewrite ^muss^{commit} muss >actual &&
61 cat >expected <<-EOF &&
62 tag muss
63 from $(git rev-parse --verify muss^{commit})
64 $(git cat-file tag muss | grep tagger)
65 data 9
66 valentin
68 EOF
69 test_cmp expected actual
72 test_expect_success 'fast-export --mark-tags ^muss^{commit} muss' '
73 git fast-export --mark-tags --tag-of-filtered-object=rewrite ^muss^{commit} muss >actual &&
74 cat >expected <<-EOF &&
75 tag muss
76 mark :1
77 from $(git rev-parse --verify muss^{commit})
78 $(git cat-file tag muss | grep tagger)
79 data 9
80 valentin
82 EOF
83 test_cmp expected actual
86 test_expect_success 'fast-export main~2..main' '
88 git fast-export main~2..main >actual &&
89 sed "s/main/partial/" actual |
90 (cd new &&
91 git fast-import &&
92 test $MAIN != $(git rev-parse --verify refs/heads/partial) &&
93 git diff --exit-code main partial &&
94 git diff --exit-code main^ partial^ &&
95 test_must_fail git rev-parse partial~2)
99 test_expect_success 'fast-export --reference-excluded-parents main~2..main' '
101 git fast-export --reference-excluded-parents main~2..main >actual &&
102 grep commit.refs/heads/main actual >commit-count &&
103 test_line_count = 2 commit-count &&
104 sed "s/main/rewrite/" actual |
105 (cd new &&
106 git fast-import &&
107 test $MAIN = $(git rev-parse --verify refs/heads/rewrite))
110 test_expect_success 'fast-export --show-original-ids' '
112 git fast-export --show-original-ids main >output &&
113 grep ^original-oid output| sed -e s/^original-oid.// | sort >actual &&
114 git rev-list --objects main muss >objects-and-names &&
115 awk "{print \$1}" objects-and-names | sort >commits-trees-blobs &&
116 comm -23 actual commits-trees-blobs >unfound &&
117 test_must_be_empty unfound
120 test_expect_success 'fast-export --show-original-ids | git fast-import' '
122 git fast-export --show-original-ids main muss | git fast-import --quiet &&
123 test $MAIN = $(git rev-parse --verify refs/heads/main) &&
124 test $MUSS = $(git rev-parse --verify refs/tags/muss)
127 test_expect_success 'reencoding iso-8859-7' '
129 test_when_finished "git reset --hard HEAD~1" &&
130 test_config i18n.commitencoding iso-8859-7 &&
131 test_tick &&
132 echo rosten >file &&
133 git commit -s -F "$TEST_DIRECTORY/t9350/simple-iso-8859-7-commit-message.txt" file &&
134 git fast-export --reencode=yes wer^..wer >iso-8859-7.fi &&
135 sed "s/wer/i18n/" iso-8859-7.fi |
136 (cd new &&
137 git fast-import &&
138 # The commit object, if not re-encoded, would be 200 bytes plus hash.
139 # Removing the "encoding iso-8859-7\n" header drops 20 bytes.
140 # Re-encoding the Pi character from \xF0 (\360) in iso-8859-7
141 # to \xCF\x80 (\317\200) in UTF-8 adds a byte. Check for
142 # the expected size.
143 test $(($(test_oid hexsz) + 181)) -eq "$(git cat-file -s i18n)" &&
144 # ...and for the expected translation of bytes.
145 git cat-file commit i18n >actual &&
146 grep $(printf "\317\200") actual &&
147 # Also make sure the commit does not have the "encoding" header
148 ! grep ^encoding actual)
151 test_expect_success 'aborting on iso-8859-7' '
153 test_when_finished "git reset --hard HEAD~1" &&
154 test_config i18n.commitencoding iso-8859-7 &&
155 echo rosten >file &&
156 git commit -s -F "$TEST_DIRECTORY/t9350/simple-iso-8859-7-commit-message.txt" file &&
157 test_must_fail git fast-export --reencode=abort wer^..wer >iso-8859-7.fi
160 test_expect_success 'preserving iso-8859-7' '
162 test_when_finished "git reset --hard HEAD~1" &&
163 test_config i18n.commitencoding iso-8859-7 &&
164 echo rosten >file &&
165 git commit -s -F "$TEST_DIRECTORY/t9350/simple-iso-8859-7-commit-message.txt" file &&
166 git fast-export --reencode=no wer^..wer >iso-8859-7.fi &&
167 sed "s/wer/i18n-no-recoding/" iso-8859-7.fi |
168 (cd new &&
169 git fast-import &&
170 # The commit object, if not re-encoded, is 200 bytes plus hash.
171 # Removing the "encoding iso-8859-7\n" header would drops 20
172 # bytes. Re-encoding the Pi character from \xF0 (\360) in
173 # iso-8859-7 to \xCF\x80 (\317\200) in UTF-8 adds a byte.
174 # Check for the expected size...
175 test $(($(test_oid hexsz) + 200)) -eq "$(git cat-file -s i18n-no-recoding)" &&
176 # ...as well as the expected byte.
177 git cat-file commit i18n-no-recoding >actual &&
178 grep $(printf "\360") actual &&
179 # Also make sure the commit has the "encoding" header
180 grep ^encoding actual)
183 test_expect_success 'encoding preserved if reencoding fails' '
185 test_when_finished "git reset --hard HEAD~1" &&
186 test_config i18n.commitencoding iso-8859-7 &&
187 echo rosten >file &&
188 git commit -s -F "$TEST_DIRECTORY/t9350/broken-iso-8859-7-commit-message.txt" file &&
189 git fast-export --reencode=yes wer^..wer >iso-8859-7.fi &&
190 sed "s/wer/i18n-invalid/" iso-8859-7.fi |
191 (cd new &&
192 git fast-import &&
193 git cat-file commit i18n-invalid >actual &&
194 # Make sure the commit still has the encoding header
195 grep ^encoding actual &&
196 # Verify that the commit has the expected size; i.e.
197 # that no bytes were re-encoded to a different encoding.
198 test $(($(test_oid hexsz) + 212)) -eq "$(git cat-file -s i18n-invalid)" &&
199 # ...and check for the original special bytes
200 grep $(printf "\360") actual &&
201 grep $(printf "\377") actual)
204 test_expect_success 'import/export-marks' '
206 git checkout -b marks main &&
207 git fast-export --export-marks=tmp-marks HEAD &&
208 test -s tmp-marks &&
209 test_line_count = 3 tmp-marks &&
210 git fast-export --import-marks=tmp-marks \
211 --export-marks=tmp-marks HEAD >actual &&
212 test $(grep ^commit actual | wc -l) -eq 0 &&
213 echo change > file &&
214 git commit -m "last commit" file &&
215 git fast-export --import-marks=tmp-marks \
216 --export-marks=tmp-marks HEAD >actual &&
217 test $(grep ^commit\ actual | wc -l) -eq 1 &&
218 test_line_count = 4 tmp-marks
222 cat > signed-tag-import << EOF
223 tag sign-your-name
224 from $(git rev-parse HEAD)
225 tagger C O Mitter <committer@example.com> 1112911993 -0700
226 data 210
227 A message for a sign
228 -----BEGIN PGP SIGNATURE-----
229 Version: GnuPG v1.4.5 (GNU/Linux)
231 fakedsignaturefakedsignaturefakedsignaturefakedsignaturfakedsign
232 aturefakedsignaturefake=
233 =/59v
234 -----END PGP SIGNATURE-----
237 test_expect_success 'set up faked signed tag' '
239 git fast-import <signed-tag-import
243 test_expect_success 'signed-tags=abort' '
245 test_must_fail git fast-export --signed-tags=abort sign-your-name
249 test_expect_success 'signed-tags=verbatim' '
251 git fast-export --signed-tags=verbatim sign-your-name > output &&
252 grep PGP output
256 test_expect_success 'signed-tags=strip' '
258 git fast-export --signed-tags=strip sign-your-name > output &&
259 ! grep PGP output
263 test_expect_success 'signed-tags=warn-strip' '
264 git fast-export --signed-tags=warn-strip sign-your-name >output 2>err &&
265 ! grep PGP output &&
266 test -s err
269 test_expect_success 'setup submodule' '
271 test_config_global protocol.file.allow always &&
272 git checkout -f main &&
273 mkdir sub &&
275 cd sub &&
276 git init &&
277 echo test file > file &&
278 git add file &&
279 git commit -m sub_initial
280 ) &&
281 git submodule add "$(pwd)/sub" sub &&
282 git commit -m initial &&
283 test_tick &&
285 cd sub &&
286 echo more data >> file &&
287 git add file &&
288 git commit -m sub_second
289 ) &&
290 git add sub &&
291 git commit -m second
295 test_expect_success 'submodule fast-export | fast-import' '
297 test_config_global protocol.file.allow always &&
298 SUBENT1=$(git ls-tree main^ sub) &&
299 SUBENT2=$(git ls-tree main sub) &&
300 rm -rf new &&
301 mkdir new &&
302 git --git-dir=new/.git init &&
303 git fast-export --signed-tags=strip --all >actual &&
304 (cd new &&
305 git fast-import &&
306 test "$SUBENT1" = "$(git ls-tree refs/heads/main^ sub)" &&
307 test "$SUBENT2" = "$(git ls-tree refs/heads/main sub)" &&
308 git checkout main &&
309 git submodule init &&
310 git submodule update &&
311 cmp sub/file ../sub/file) <actual
315 GIT_AUTHOR_NAME='A U Thor'; export GIT_AUTHOR_NAME
316 GIT_COMMITTER_NAME='C O Mitter'; export GIT_COMMITTER_NAME
318 test_expect_success 'setup copies' '
320 git checkout -b copy rein &&
321 git mv file file3 &&
322 git commit -m move1 &&
323 test_tick &&
324 cp file2 file4 &&
325 git add file4 &&
326 git mv file2 file5 &&
327 git commit -m copy1 &&
328 test_tick &&
329 cp file3 file6 &&
330 git add file6 &&
331 git commit -m copy2 &&
332 test_tick &&
333 echo more text >> file6 &&
334 echo even more text >> file6 &&
335 git add file6 &&
336 git commit -m modify &&
337 test_tick &&
338 cp file6 file7 &&
339 echo test >> file7 &&
340 git add file7 &&
341 git commit -m copy_modify
345 test_expect_success 'fast-export -C -C | fast-import' '
347 ENTRY=$(git rev-parse --verify copy) &&
348 rm -rf new &&
349 mkdir new &&
350 git --git-dir=new/.git init &&
351 git fast-export -C -C --signed-tags=strip --all > output &&
352 grep "^C file2 file4\$" output &&
353 cat output |
354 (cd new &&
355 git fast-import &&
356 test $ENTRY = $(git rev-parse --verify refs/heads/copy))
360 test_expect_success 'fast-export | fast-import when main is tagged' '
362 git tag -m msg last &&
363 git fast-export -C -C --signed-tags=strip --all > output &&
364 test $(grep -c "^tag " output) = 3
368 cat > tag-content << EOF
369 object $(git rev-parse HEAD)
370 type commit
371 tag rosten
374 test_expect_success 'cope with tagger-less tags' '
376 TAG=$(git hash-object --literally -t tag -w tag-content) &&
377 git update-ref refs/tags/sonnenschein $TAG &&
378 git fast-export -C -C --signed-tags=strip --all > output &&
379 test $(grep -c "^tag " output) = 4 &&
380 ! grep "Unspecified Tagger" output &&
381 git fast-export -C -C --signed-tags=strip --all \
382 --fake-missing-tagger > output &&
383 test $(grep -c "^tag " output) = 4 &&
384 grep "Unspecified Tagger" output
388 test_expect_success 'setup for limiting exports by PATH' '
389 mkdir limit-by-paths &&
391 cd limit-by-paths &&
392 git init &&
393 echo hi > there &&
394 git add there &&
395 git commit -m "First file" &&
396 echo foo > bar &&
397 git add bar &&
398 git commit -m "Second file" &&
399 git tag -a -m msg mytag &&
400 echo morefoo >> bar &&
401 git add bar &&
402 git commit -m "Change to second file"
406 cat > limit-by-paths/expected << EOF
407 blob
408 mark :1
409 data 3
412 reset refs/tags/mytag
413 commit refs/tags/mytag
414 mark :2
415 author A U Thor <author@example.com> 1112912713 -0700
416 committer C O Mitter <committer@example.com> 1112912713 -0700
417 data 11
418 First file
419 M 100644 :1 there
423 test_expect_success 'dropping tag of filtered out object' '
425 cd limit-by-paths &&
426 git fast-export --tag-of-filtered-object=drop mytag -- there > output &&
427 test_cmp expected output
431 cat >> limit-by-paths/expected << EOF
432 tag mytag
433 from :2
434 tagger C O Mitter <committer@example.com> 1112912713 -0700
435 data 4
440 test_expect_success 'rewriting tag of filtered out object' '
442 cd limit-by-paths &&
443 git fast-export --tag-of-filtered-object=rewrite mytag -- there > output &&
444 test_cmp expected output
448 test_expect_success 'rewrite tag predating pathspecs to nothing' '
449 test_create_repo rewrite_tag_predating_pathspecs &&
451 cd rewrite_tag_predating_pathspecs &&
453 test_commit initial &&
455 git tag -a -m "Some old tag" v0.0.0.0.0.0.1 &&
457 test_commit bar &&
459 git fast-export --tag-of-filtered-object=rewrite --all -- bar.t >output &&
460 grep from.$ZERO_OID output
464 cat > limit-by-paths/expected << EOF
465 blob
466 mark :1
467 data 4
470 blob
471 mark :2
472 data 3
475 reset refs/heads/main
476 commit refs/heads/main
477 mark :3
478 author A U Thor <author@example.com> 1112912713 -0700
479 committer C O Mitter <committer@example.com> 1112912713 -0700
480 data 12
481 Second file
482 M 100644 :1 bar
483 M 100644 :2 there
487 test_expect_failure 'no exact-ref revisions included' '
489 cd limit-by-paths &&
490 git fast-export main~2..main~1 > output &&
491 test_cmp expected output
495 test_expect_success 'path limiting with import-marks does not lose unmodified files' '
496 git checkout -b simple marks~2 &&
497 git fast-export --export-marks=marks simple -- file > /dev/null &&
498 echo more content >> file &&
499 test_tick &&
500 git commit -mnext file &&
501 git fast-export --import-marks=marks simple -- file file0 >actual &&
502 grep file0 actual
505 test_expect_success 'path limiting works' '
506 git fast-export simple -- file >actual &&
507 sed -ne "s/^M .* //p" <actual | sort -u >actual.files &&
508 echo file >expect &&
509 test_cmp expect actual.files
512 test_expect_success 'avoid corrupt stream with non-existent mark' '
513 test_create_repo avoid_non_existent_mark &&
515 cd avoid_non_existent_mark &&
517 test_commit important-path &&
519 test_commit ignored &&
521 git branch A &&
522 git branch B &&
524 echo foo >>important-path.t &&
525 git add important-path.t &&
526 test_commit more changes &&
528 git fast-export --all -- important-path.t | git fast-import --force
532 test_expect_success 'full-tree re-shows unmodified files' '
533 git checkout -f simple &&
534 git fast-export --full-tree simple >actual &&
535 test $(grep -c file0 actual) -eq 3
538 test_expect_success 'set-up a few more tags for tag export tests' '
539 git checkout -f main &&
540 HEAD_TREE=$(git show -s --pretty=raw HEAD | sed -n "/tree/s/tree //p") &&
541 git tag tree_tag -m "tagging a tree" $HEAD_TREE &&
542 git tag -a tree_tag-obj -m "tagging a tree" $HEAD_TREE &&
543 git tag tag-obj_tag -m "tagging a tag" tree_tag-obj &&
544 git tag -a tag-obj_tag-obj -m "tagging a tag" tree_tag-obj
547 test_expect_success 'tree_tag' '
548 mkdir result &&
549 (cd result && git init) &&
550 git fast-export tree_tag > fe-stream &&
551 (cd result && git fast-import < ../fe-stream)
554 # NEEDSWORK: not just check return status, but validate the output
555 # Note that these tests DO NOTHING other than print a warning that
556 # they are omitting the one tag we asked them to export (because the
557 # tags resolve to a tree). They exist just to make sure we do not
558 # abort but instead just warn.
559 test_expect_success 'tree_tag-obj' 'git fast-export tree_tag-obj'
560 test_expect_success 'tag-obj_tag' 'git fast-export tag-obj_tag'
561 test_expect_success 'tag-obj_tag-obj' 'git fast-export tag-obj_tag-obj'
563 test_expect_success 'handling tags of blobs' '
564 git tag -a -m "Tag of a blob" blobtag $(git rev-parse main:file) &&
565 git fast-export blobtag >actual &&
566 cat >expect <<-EOF &&
567 blob
568 mark :1
569 data 9
570 die Luft
572 tag blobtag
573 from :1
574 tagger $GIT_COMMITTER_NAME <$GIT_COMMITTER_EMAIL> $GIT_COMMITTER_DATE
575 data 14
576 Tag of a blob
579 test_cmp expect actual
582 test_expect_success 'handling nested tags' '
583 git tag -a -m "This is a nested tag" nested muss &&
584 git fast-export --mark-tags nested >output &&
585 grep "^from $ZERO_OID$" output &&
586 grep "^tag nested$" output >tag_lines &&
587 test_line_count = 2 tag_lines
590 test_expect_success 'directory becomes symlink' '
591 git init dirtosymlink &&
592 git init result &&
594 cd dirtosymlink &&
595 mkdir foo &&
596 mkdir bar &&
597 echo hello > foo/world &&
598 echo hello > bar/world &&
599 git add foo/world bar/world &&
600 git commit -q -mone &&
601 git rm -r foo &&
602 test_ln_s_add bar foo &&
603 git commit -q -mtwo
604 ) &&
606 cd dirtosymlink &&
607 git fast-export main -- foo |
608 (cd ../result && git fast-import --quiet)
609 ) &&
610 (cd result && git show main:foo)
613 test_expect_success 'fast-export quotes pathnames' '
614 git init crazy-paths &&
615 test_config -C crazy-paths core.protectNTFS false &&
616 (cd crazy-paths &&
617 blob=$(echo foo | git hash-object -w --stdin) &&
618 git -c core.protectNTFS=false update-index --add \
619 --cacheinfo 100644 $blob "$(printf "path with\\nnewline")" \
620 --cacheinfo 100644 $blob "path with \"quote\"" \
621 --cacheinfo 100644 $blob "path with \\backslash" \
622 --cacheinfo 100644 $blob "path with space" &&
623 git commit -m addition &&
624 git ls-files -z -s | perl -0pe "s{\\t}{$&subdir/}" >index &&
625 git read-tree --empty &&
626 git update-index -z --index-info <index &&
627 git commit -m rename &&
628 git read-tree --empty &&
629 git commit -m deletion &&
630 git fast-export -M HEAD >export.out &&
631 git rev-list HEAD >expect &&
632 git init result &&
633 cd result &&
634 git fast-import <../export.out &&
635 git rev-list HEAD >actual &&
636 test_cmp ../expect actual
640 test_expect_success 'test bidirectionality' '
641 git init marks-test &&
642 git fast-export --export-marks=marks-cur --import-marks-if-exists=marks-cur --branches | \
643 git --git-dir=marks-test/.git fast-import --export-marks=marks-new --import-marks-if-exists=marks-new &&
644 (cd marks-test &&
645 git reset --hard &&
646 echo Wohlauf > file &&
647 git commit -a -m "back in time") &&
648 git --git-dir=marks-test/.git fast-export --export-marks=marks-new --import-marks-if-exists=marks-new --branches | \
649 git fast-import --export-marks=marks-cur --import-marks-if-exists=marks-cur
652 cat > expected << EOF
653 blob
654 mark :13
655 data 5
656 bump
658 commit refs/heads/main
659 mark :14
660 author A U Thor <author@example.com> 1112912773 -0700
661 committer C O Mitter <committer@example.com> 1112912773 -0700
662 data 5
663 bump
664 from :12
665 M 100644 :13 file
669 test_expect_success 'avoid uninteresting refs' '
670 > tmp-marks &&
671 git fast-export --import-marks=tmp-marks \
672 --export-marks=tmp-marks main > /dev/null &&
673 git tag v1.0 &&
674 git branch uninteresting &&
675 echo bump > file &&
676 git commit -a -m bump &&
677 git fast-export --import-marks=tmp-marks \
678 --export-marks=tmp-marks ^uninteresting ^v1.0 main > actual &&
679 test_cmp expected actual
682 cat > expected << EOF
683 reset refs/heads/main
684 from :14
688 test_expect_success 'refs are updated even if no commits need to be exported' '
689 > tmp-marks &&
690 git fast-export --import-marks=tmp-marks \
691 --export-marks=tmp-marks main > /dev/null &&
692 git fast-export --import-marks=tmp-marks \
693 --export-marks=tmp-marks main > actual &&
694 test_cmp expected actual
697 test_expect_success 'use refspec' '
698 git fast-export --refspec refs/heads/main:refs/heads/foobar main >actual2 &&
699 grep "^commit " actual2 | sort | uniq >actual &&
700 echo "commit refs/heads/foobar" > expected &&
701 test_cmp expected actual
704 test_expect_success 'delete ref because entire history excluded' '
705 git branch to-delete &&
706 git fast-export to-delete ^to-delete >actual &&
707 cat >expected <<-EOF &&
708 reset refs/heads/to-delete
709 from $ZERO_OID
712 test_cmp expected actual
715 test_expect_success 'delete refspec' '
716 git fast-export --refspec :refs/heads/to-delete >actual &&
717 cat >expected <<-EOF &&
718 reset refs/heads/to-delete
719 from $ZERO_OID
722 test_cmp expected actual
725 test_expect_success 'when using -C, do not declare copy when source of copy is also modified' '
726 test_create_repo src &&
727 echo a_line >src/file.txt &&
728 git -C src add file.txt &&
729 git -C src commit -m 1st_commit &&
731 cp src/file.txt src/file2.txt &&
732 echo another_line >>src/file.txt &&
733 git -C src add file.txt file2.txt &&
734 git -C src commit -m 2nd_commit &&
736 test_create_repo dst &&
737 git -C src fast-export --all -C >actual &&
738 git -C dst fast-import <actual &&
739 git -C src show >expected &&
740 git -C dst show >actual &&
741 test_cmp expected actual
744 test_expect_success 'merge commit gets exported with --import-marks' '
745 test_create_repo merging &&
747 cd merging &&
748 test_commit initial &&
749 git checkout -b topic &&
750 test_commit on-topic &&
751 git checkout main &&
752 test_commit on-main &&
753 test_tick &&
754 git merge --no-ff -m Yeah topic &&
756 echo ":1 $(git rev-parse HEAD^^)" >marks &&
757 git fast-export --import-marks=marks main >out &&
758 grep Yeah out
763 test_expect_success 'fast-export --first-parent outputs all revisions output by revision walk' '
764 git init first-parent &&
766 cd first-parent &&
767 test_commit A &&
768 git checkout -b topic1 &&
769 test_commit B &&
770 git checkout main &&
771 git merge --no-ff topic1 &&
773 git checkout -b topic2 &&
774 test_commit C &&
775 git checkout main &&
776 git merge --no-ff topic2 &&
778 test_commit D &&
780 git fast-export main -- --first-parent >first-parent-export &&
781 git fast-export main -- --first-parent --reverse >first-parent-reverse-export &&
782 test_cmp first-parent-export first-parent-reverse-export &&
784 git init import &&
785 git -C import fast-import <first-parent-export &&
787 git log --format="%ad %s" --first-parent main >expected &&
788 git -C import log --format="%ad %s" --all >actual &&
789 test_cmp expected actual &&
790 test_line_count = 4 actual
794 test_expect_success 'fast-export handles --end-of-options' '
795 git update-ref refs/heads/nodash HEAD &&
796 git update-ref refs/heads/--dashes HEAD &&
797 git fast-export --end-of-options nodash >expect &&
798 git fast-export --end-of-options --dashes >actual.raw &&
799 # fix up lines which mention the ref for comparison
800 sed s/--dashes/nodash/ <actual.raw >actual &&
801 test_cmp expect actual
804 test_done