diff options
author | Santi Béjar <sbejar@gmail.com> | 2008-05-04 18:04:50 +0200 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2008-05-06 16:43:52 -0700 |
commit | e83dbe802f24e017f2e3889272a70793c064d984 (patch) | |
tree | b93e4375b4b630101faa7afb072a1467a3f87205 /t/t7502-commit.sh | |
parent | a45d46ba72a8be16eeb30f608620bac7d9296803 (diff) | |
download | git-e83dbe802f24e017f2e3889272a70793c064d984.tar.gz |
commit: Show author if different from committer
That would help reassure anybody while committing other's changes.
Signed-off-by: Santi Béjar <sbejar@gmail.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 't/t7502-commit.sh')
-rwxr-xr-x | t/t7502-commit.sh | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/t/t7502-commit.sh b/t/t7502-commit.sh index 284c941247..0b1db406a7 100755 --- a/t/t7502-commit.sh +++ b/t/t7502-commit.sh @@ -154,6 +154,18 @@ test_expect_success 'cleanup commit messages (strip,-F,-e)' ' ' +echo "# +# Author: $GIT_AUTHOR_NAME <$GIT_AUTHOR_EMAIL> +#" >> expect + +test_expect_success 'author different from committer' ' + + echo >>negative && + git commit -e -m "sample" + head -n 7 .git/COMMIT_EDITMSG >actual && + test_cmp expect actual +' + pwd=`pwd` cat >> .git/FAKE_EDITOR << EOF #! /bin/sh |