]> git.ipfire.org Git - thirdparty/git.git/blob - t/t7604-merge-custom-message.sh
Merge branch 'jc/maint-refs-dangling'
[thirdparty/git.git] / t / t7604-merge-custom-message.sh
1 #!/bin/sh
2
3 test_description='git merge
4
5 Testing merge when using a custom message for the merge commit.'
6
7 . ./test-lib.sh
8
9 test_expect_success 'setup' '
10 echo c0 > c0.c &&
11 git add c0.c &&
12 git commit -m c0 &&
13 git tag c0 &&
14 echo c1 > c1.c &&
15 git add c1.c &&
16 git commit -m c1 &&
17 git tag c1 &&
18 git reset --hard c0 &&
19 echo c2 > c2.c &&
20 git add c2.c &&
21 git commit -m c2 &&
22 git tag c2
23 '
24
25
26 test_expect_success 'merge c2 with a custom message' '
27 git reset --hard c1 &&
28 echo >expected "custom message" &&
29 git merge -m "custom message" c2 &&
30 git cat-file commit HEAD | sed -e "1,/^$/d" >actual &&
31 test_cmp expected actual
32 '
33
34 test_done