diff options
author | 2008-04-22 00:10:20 -0700 | |
---|---|---|
committer | 2008-04-22 00:10:20 -0700 | |
commit | bdb87afb4b425d97f7b5e957cbed1589969d9a24 (patch) | |
tree | 32b46fd09198fa1bc88d793992cfad5dfb6f00ef /contrib/hooks | |
parent | completion: remove use of dashed git commands (diff) | |
parent | post-receive-email: fix accidental removal of a trailing space in signature line (diff) | |
download | tgif-bdb87afb4b425d97f7b5e957cbed1589969d9a24.tar.xz |
Merge branch 'maint'
* maint:
post-receive-email: fix accidental removal of a trailing space in signature line
Escape project names before creating pathinfo URLs
Escape project name in regexp
bash: Add completion for git diff --base --ours --theirs
diff-options.txt: document the new "--dirstat" option
Diffstat (limited to 'contrib/hooks')
-rw-r--r-- | contrib/hooks/post-receive-email | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/contrib/hooks/post-receive-email b/contrib/hooks/post-receive-email index 62a740c482..41368950d6 100644 --- a/contrib/hooks/post-receive-email +++ b/contrib/hooks/post-receive-email @@ -202,11 +202,12 @@ generate_email_header() generate_email_footer() { + SPACE=" " cat <<-EOF hooks/post-receive - -- + --${SPACE} $projectdesc EOF } |