aboutsummaryrefslogtreecommitdiff
path: root/ikiwiki/bin/post-receive
diff options
context:
space:
mode:
Diffstat (limited to 'ikiwiki/bin/post-receive')
-rwxr-xr-xikiwiki/bin/post-receive21
1 files changed, 0 insertions, 21 deletions
diff --git a/ikiwiki/bin/post-receive b/ikiwiki/bin/post-receive
deleted file mode 100755
index 627198d..0000000
--- a/ikiwiki/bin/post-receive
+++ /dev/null
@@ -1,21 +0,0 @@
-#!/bin/sh
-#
-# Post-receive git hook
-#
-
-cd ..
-unset GIT_DIR
-
-if [ -d ".git/annex" ]; then
- git annex sync
-else
- git config receive.denyCurrentBranch ignore
- #git reset HEAD
- git checkout -f
-fi
-
-git submodule sync --recursive
-git submodule update --init --recursive
-
-cd -
-exec git update-server-info