3 test_description
='rebase should not insist on git message convention'
8 This is an example of a commit log message
9 that does not conform to git commit convention.
11 It has two paragraphs
, but its first paragraph is not friendly
12 to oneline summary format.
15 test_expect_success setup
'
19 git add file1 file2 &&
21 git commit -m "Initial commit" &&
23 git checkout -b side &&
29 git cat-file commit HEAD | sed -e "1,/^\$/d" >F0 &&
31 git checkout master &&
36 git commit -m "Second commit"
39 test_expect_success rebase
'
41 git rebase master side &&
42 git cat-file commit HEAD | sed -e "1,/^\$/d" >F1 &&