Heavily expanded update hook to send more useful emails than the old hook
commit829a686f1b50ba96cac2d88494fa339efe0c0862
authorAndy Parkins <andyparkins@gmail.com>
Fri, 26 Jan 2007 09:01:04 +0000 (26 09:01 +0000)
committerJunio C Hamano <junkio@cox.net>
Sun, 28 Jan 2007 22:38:11 +0000 (28 14:38 -0800)
treee3fa2546e8df888bf2214935e8a049d47dbcef97
parenta69aba6af3e96f8021c194691a851e78febd70bf
Heavily expanded update hook to send more useful emails than the old hook

I know it's only an example, but having this might save someone else the
trouble of writing an enhanced version for themselves.

It basically does the same job as the old update hook, but with these
differences:
 * The recipients list is read from the repository config file from
   hooks.mailinglist
 * Updating unannotated tags can be allowed by setting
   hooks.allowunannotated
 * Announcement emails (via annotated tag creation) can be sent to a
   different mailing list by setting hooks.announcelist
 * Output email is more verbose and generates specific content depending
   on whether the ref is a tag, an annotated tag, a branch, or a
   tracking branch
 * The email is easier to filter; the subject line is prefixed with
   [SCM] and a project description pulled from the "description" file
 * It catches (and displays differently) branch updates that are
   performed with a --force

Obviously, it's nothing that clever - it's the update hook I use on my
repositories but I've tried to keep it general, and tried to make the
output always relevant to the type of update.

Signed-off-by: Andy Parkins <andyparkins@gmail.com>
Signed-off-by: Junio C Hamano <junkio@cox.net>
templates/hooks--update