summaryrefslogtreecommitdiff
path: root/t/t3400-rebase.sh
blob: b9d3131cc2167df027d4d6eebc87ad51223c8f34 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
#!/bin/sh
#
# Copyright (c) 2005 Amos Waterland
#
 
test_description='git rebase should not destroy author information
 
This test runs git rebase and checks that the author information is not lost.
'
. ./test-lib.sh
 
export GIT_AUTHOR_EMAIL=bogus_email_address
 
test_expect_success \
    'prepare repository with topic branch, then rebase against master' \
    'echo First > A &&
     git-update-index --add A &&
     git-commit -m "Add A." &&
     git checkout -b my-topic-branch &&
     echo Second > B &&
     git-update-index --add B &&
     git-commit -m "Add B." &&
     git checkout -f master &&
     echo Third >> A &&
     git-update-index A &&
     git-commit -m "Modify A." &&
     git checkout -f my-topic-branch &&
     git rebase master'
 
test_expect_failure \
    'the rebase operation should not have destroyed author information' \
    'git log | grep "Author:" | grep "<>"'
 
test_done