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

cd ..
unset GIT_DIR

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

cd -
exec git update-server-info