diff options
author | Andy Parkins <andyparkins@gmail.com> | 2007-09-28 15:24:26 +0100 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2007-10-01 01:59:22 -0700 |
commit | e6dc8d60fbd2c84900a26545c5d360b0e202d95b (patch) | |
tree | a2e309b5c80656e19ca87c2d8e91aa64ba90006e /contrib | |
parent | f4bb20cc99fe18ba0e7dd421f1d95a05c1cbbc93 (diff) | |
download | git-e6dc8d60fbd2c84900a26545c5d360b0e202d95b.tar.gz git-e6dc8d60fbd2c84900a26545c5d360b0e202d95b.tar.xz |
post-receive-hook: Remove the From field from the generated email header so that the pusher's name is used
Using the name of the committer of the revision at the tip of the
updated ref is not sensible. That information is available in the email
itself should it be wanted, and by supplying a "From", we were
effectively hiding the person who performed the push - which is useful
information in itself.
Signed-off-by: Andy Parkins <andyparkins@gmail.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'contrib')
-rw-r--r-- | contrib/hooks/post-receive-email | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/contrib/hooks/post-receive-email b/contrib/hooks/post-receive-email index 1f88099df..cbbd02fad 100644 --- a/contrib/hooks/post-receive-email +++ b/contrib/hooks/post-receive-email @@ -177,7 +177,6 @@ generate_email_header() # --- Email (all stdout will be the email) # Generate header cat <<-EOF - From: $committer To: $recipients Subject: ${EMAILPREFIX}$projectdesc $refname_type, $short_refname, ${change_type}d. $describe X-Git-Refname: $refname |