I'm using the post-receive-email script included with git. (Source is here.) It works just fine, but I want each email to be sent from the author of the commits pushed. How do I do it?

My post-receive file currently looks like this, and I want to customize the from-email-address.

#!/bin/sh

export USER_EMAIL=from-email-address@blah.com
$(dirname $0)/post-receive-email
link|improve this question

feedback

2 Answers

up vote 4 down vote accepted

Use git log to pull out the email address.

For example, in post-receive:

#!/bin/sh

# Use the email address of the author of the last commit.
export USER_EMAIL=$(git log -1 --format=format:%ae HEAD)
$(dirname $0)/post-receive-email

You could also map the email addresses, if for example, people are using their gmail or personal domain addresses, but you would like to map them to a single domain.

#!/bin/sh

# Use the mapped email address (specified in .mailmap) of the author of the last commit.
export USER_EMAIL=$(git log -1 --format=format:%aE HEAD)
$(dirname $0)/post-receive-email

You can read more about .mailmap here.

link|improve this answer
on newer git it's git log -1 --pretty=format:%ae – 2ni Apr 26 '11 at 10:31
1  
and it doesn't work for branches. If someone commits in a branch, the auther will always be the last one from the master. – 2ni Apr 27 '11 at 1:29
You're right, I do have the branch problem you mention. Do you know how to fix it? It's never bothered me enough to look into it. – Jonathan Tran Apr 27 '11 at 20:25
feedback

You can try another hook system like http://github.com/jtek/git-hook-update-notify-email

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.