diff options
Diffstat (limited to 'post-update.sh')
-rwxr-xr-x | post-update.sh | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/post-update.sh b/post-update.sh new file mode 100755 index 0000000..684ca6f --- /dev/null +++ b/post-update.sh @@ -0,0 +1,14 @@ +#!/bin/sh +# +# An example hook script to prepare a packed repository for use over +# dumb transports. +# +# To enable this hook, rename this file to "post-update". + +git update-server-info + +echo "ARGS=" $* +while read IN; do + echo "IN=$IN" +done + |