3 # Copyright (c) 2005 Amos Waterland
6 test_description
='git rebase should not destroy author information
8 This test runs git rebase and checks that the author information is not lost.
12 export GIT_AUTHOR_EMAIL
=bogus_email_address
15 'prepare repository with topic branches' \
17 git update-index --add A &&
18 git-commit -m "Add A." &&
19 git checkout -b my-topic-branch &&
21 git update-index --add B &&
22 git-commit -m "Add B." &&
23 git checkout -f master &&
26 git-commit -m "Modify A." &&
27 git checkout -b side my-topic-branch &&
30 git commit -m "Add C" &&
31 git checkout -b nonlinear my-topic-branch &&
34 git commit -m "Modify B" &&
36 git checkout -b upstream-merged-nonlinear &&
38 git checkout -f my-topic-branch &&
42 test_expect_success
'rebase against master' '
46 'the rebase operation should not have destroyed author information' \
47 'git log | grep "Author:" | grep "<>"'
49 test_expect_success
'rebase after merge master' '
50 git reset --hard topic &&
53 ! git show | grep "^Merge:"
56 test_expect_success
'rebase of history with merges is linearized' '
57 git checkout nonlinear &&
58 test 4 = $(git rev-list master.. | wc -l) &&
60 test 3 = $(git rev-list master.. | wc -l)
64 'rebase of history with merges after upstream merge is linearized' '
65 git checkout upstream-merged-nonlinear &&
66 test 5 = $(git rev-list master.. | wc -l) &&
68 test 3 = $(git rev-list master.. | wc -l)
71 test_expect_success
'rebase a single mode change' '
72 git checkout master &&
76 git commit -m prepare &&
77 git checkout -b modechange HEAD^ &&
82 git commit -m modechange A X &&
83 GIT_TRACE=1 git rebase master