From: Martin Mares Date: Fri, 3 Nov 2006 19:38:38 +0000 (+0100) Subject: Improved comments. X-Git-Tag: v1.0~11 X-Git-Url: http://mj.ucw.cz/gitweb/?a=commitdiff_plain;h=673b6bee4c0aa3feffedf131192f68000e487ef2;p=git-tools.git Improved comments. --- diff --git a/update b/update index ddfc091..e79958e 100755 --- a/update +++ b/update @@ -1,10 +1,11 @@ #!/bin/sh # # This is a generic update hook script for GIT repositories. +# Written by Martin Mares based on the template from GIT distribution. # # Called by git-receive-pack with arguments: refname sha1-old sha1-new # -# Expects the following environment variables: +# Expects the following environment variables to be set: # # recipient where to send the mail reports to # sub_prefix prefix which should be prepended to mail subject @@ -58,5 +59,5 @@ fi exec >&2 mutt -F/dev/null -x -e 'set charset="utf-8"; set send_charset="us-ascii:iso-8859-2:utf-8"' -s "$subj" "$recipient" <$out -rm $out +#rm $out exit 0