Signed-off-by: Kristian Høgsberg <krh@xxxxxxxxxx> --- t/t7501-commit.sh | 16 ++++++++++++++++ 1 files changed, 16 insertions(+), 0 deletions(-) diff --git a/t/t7501-commit.sh b/t/t7501-commit.sh index b151b51..7a37c13 100644 --- a/t/t7501-commit.sh +++ b/t/t7501-commit.sh @@ -151,6 +151,7 @@ test_expect_success 'partial commit that involves removal (2)' ' diff expected current ' +test_tick test_expect_success 'partial commit that involves removal (3)' ' @@ -163,4 +164,19 @@ test_expect_success 'partial commit that involves removal (3)' ' ' +oldtick=$GIT_AUTHOR_DATE +test_tick + +author="The Real Author <someguy@xxxxxxxxxxxxx>" +committer="$GIT_COMMITTER_NAME <$GIT_COMMITTER_EMAIL> $GIT_COMMITTER_DATE" + +test_expect_success 'amend commit to fix author' ' + + git reset --hard + git cat-file -p HEAD | sed -e "s/author.*/author $author $oldtick/" -e "s/committer.*/committer $committer/" > expected && + git commit --amend --author="$author" && + git cat-file -p HEAD > current && + diff expected current + +' test_done -- 1.5.3.5.1527.g6161-dirty - To unsubscribe from this list: send the line "unsubscribe git" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html