Merge tag 'l10n-2.31.0-rnd2' of git://github.com/git-l10n/git-po
[git/debian.git] / t / t3408-rebase-multi-line.sh
blobab0960e6d9963e27dfc70a7bbe3a72ce1734109b
1 #!/bin/sh
3 test_description='rebasing a commit with multi-line first paragraph.'
5 GIT_TEST_DEFAULT_INITIAL_BRANCH_NAME=main
6 export GIT_TEST_DEFAULT_INITIAL_BRANCH_NAME
8 . ./test-lib.sh
10 test_expect_success setup '
12 >file &&
13 git add file &&
14 test_tick &&
15 git commit -m initial &&
17 echo hello >file &&
18 test_tick &&
19 git commit -a -m "A sample commit log message that has a long
20 summary that spills over multiple lines.
22 But otherwise with a sane description." &&
24 git branch side &&
26 git reset --hard HEAD^ &&
27 >elif &&
28 git add elif &&
29 test_tick &&
30 git commit -m second &&
32 git checkout -b side2 &&
33 >afile &&
34 git add afile &&
35 test_tick &&
36 git commit -m third &&
37 echo hello >afile &&
38 test_tick &&
39 git commit -a -m fourth &&
40 git checkout -b side-merge &&
41 git reset --hard HEAD^^ &&
42 git merge --no-ff -m "A merge commit log message that has a long
43 summary that spills over multiple lines.
45 But otherwise with a sane description." side2 &&
46 git branch side-merge-original
49 test_expect_success rebase '
51 git checkout side &&
52 git rebase main &&
53 git cat-file commit HEAD | sed -e "1,/^\$/d" >actual &&
54 git cat-file commit side@{1} | sed -e "1,/^\$/d" >expect &&
55 test_cmp expect actual
58 test_expect_success REBASE_P rebasep '
60 git checkout side-merge &&
61 git rebase -p side &&
62 git cat-file commit HEAD | sed -e "1,/^\$/d" >actual &&
63 git cat-file commit side-merge-original | sed -e "1,/^\$/d" >expect &&
64 test_cmp expect actual
68 test_done