diff options
Diffstat (limited to 'hooks/post-receive')
-rwxr-xr-x | hooks/post-receive | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/hooks/post-receive b/hooks/post-receive new file mode 100755 index 0000000..d84579e --- /dev/null +++ b/hooks/post-receive @@ -0,0 +1,13 @@ +#!/bin/sh + +product=website +repo=/usr/local/git/pub/$product.git +web=~www/apache24/data + +unset GIT_DIR +cd $HOME/$product \ + && git pull \ + && git --git-dir=$repo --work-tree=$web checkout -f master -- \ + index.html \ + 7.1.11.53043.html \ + && git --git-dir=$repo push |