diff --git a/utils/git-notify b/utils/git-notify index 7ecc4b40..8a478ca8 100755 --- a/utils/git-notify +++ b/utils/git-notify @@ -265,7 +265,7 @@ sub send_commit_notice($$) "Date: " . format_date($info{"tagger_date"},$info{"tagger_tz"}), "", join "\n", @{$info{"log"}}; - $subject = "Tag " . $info{"tag"} . " : " . $info{"tagger_name"} . ": " . ${$info{"log"}}[0]; + $subject = "Git tag ($repos_name/$ref): " . $info{"tag"} . " : " . ${$info{"log"}}[0]; } else { @@ -299,7 +299,7 @@ sub send_commit_notice($$) push @notice, "Diff: $gitweb_url;a=commitdiff;h=$obj" if $gitweb_url; } - $subject = "Git commit ($repos_name): " . ${$info{"log"}}[0]; + $subject = "Git commit ($repos_name/$ref): " . ${$info{"log"}}[0]; } mail_notification($commitlist_address, $subject, "text/plain; charset=UTF-8", @notice);