rebase: use correct base for --keep-base when a branch is given
[alt-git.git] / t / t3408-rebase-multi-line.sh
blobcde3562e3a64f756544763107d9c607eaa4f38ca
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_done