aboutsummaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorSilvio Rhatto <rhatto@riseup.net>2017-01-26 10:43:56 -0200
committerSilvio Rhatto <rhatto@riseup.net>2017-01-26 10:43:56 -0200
commita9f7a16c3f3a9ca418acb8fe2a24481e8cfde40f (patch)
treedf8cea41f5ff37486e21e1566b873e056d00d848 /lib
parent96061a360de383a268b34d001ca80bbc966b9a19 (diff)
downloadhydra-a9f7a16c3f3a9ca418acb8fe2a24481e8cfde40f.tar.gz
hydra-a9f7a16c3f3a9ca418acb8fe2a24481e8cfde40f.tar.bz2
Adds a post-receive hook
Diffstat (limited to 'lib')
-rwxr-xr-xlib/hydra/hooks/post-receive20
1 files changed, 20 insertions, 0 deletions
diff --git a/lib/hydra/hooks/post-receive b/lib/hydra/hooks/post-receive
new file mode 100755
index 0000000..ff7cf50
--- /dev/null
+++ b/lib/hydra/hooks/post-receive
@@ -0,0 +1,20 @@
+#!/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 update --init --recursive
+
+cd -
+exec git update-server-info