summaryrefslogtreecommitdiff
path: root/bin/post-receive
blob: e6baa0792e122d762d329d690c64a20fa1682d69 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#!/bin/sh

cd ..
unset GIT_DIR

if [ -d ".git/annex" ]; then
  git annex sync
else
  #git reset HEAD
  git checkout -f
fi

git submodule sync --recursive
git submodule update --init --recursive

cd -
exec git update-server-info