https://github.com/git/git
Revision a0a01958d7c059b1535b79a80dc37181b25bb677 authored by Junio C Hamano on 08 April 2006, 01:02:40 UTC, committed by Junio C Hamano on 08 April 2006, 01:02:40 UTC
Signed-off-by: Junio C Hamano <junkio@cox.net>
1 parent a906ce6
Raw File
Tip revision: a0a01958d7c059b1535b79a80dc37181b25bb677 authored by Junio C Hamano on 08 April 2006, 01:02:40 UTC
GIT 1.3.0-rc3
Tip revision: a0a0195
t3400-rebase.sh
#!/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
back to top