aboutsummaryrefslogtreecommitdiff
path: root/bin/post-update
blob: 27e926a5c1812057f5df70c93b1ea699f1350886 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#!/bin/sh

cd ..
unset GIT_DIR

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

git submodule update --init

cd -
exec git update-server-info