diff options
author | Junio C Hamano <junkio@cox.net> | 2005-08-02 16:45:21 -0700 |
---|---|---|
committer | Junio C Hamano <junkio@cox.net> | 2005-08-03 16:27:38 -0700 |
commit | 8d5afef0f9b3a252f7b90406d35c295dc698e26d (patch) | |
tree | 0656bdb1282ecb419ab8fe2a2ce9b702b16e19ed /templates/hooks--post-update | |
parent | ee639140c9d3d7d0c8821e6b7d36c75ae578b326 (diff) | |
download | git-8d5afef0f9b3a252f7b90406d35c295dc698e26d.tar.gz |
Install sample hooks
A template mechanism to populate newly initialized repository
with default set of files is introduced. Use it to ship example
hooks that can be used for update and post update checks, as
Josef Weidendorfer suggests.
Signed-off-by: Junio C Hamano <junkio@cox.net>
Diffstat (limited to 'templates/hooks--post-update')
-rw-r--r-- | templates/hooks--post-update | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/templates/hooks--post-update b/templates/hooks--post-update new file mode 100644 index 0000000000..bcba8937bb --- /dev/null +++ b/templates/hooks--post-update @@ -0,0 +1,8 @@ +#!/bin/sh +# +# An example hook script to prepare a packed repository for use over +# dumb transports. +# +# To enable this hook, make this file executable by "chmod +x post-update". + +exec git-update-server-info |