aboutsummaryrefslogtreecommitdiff
path: root/bin/post-update
blob: beed5248ec84b2bac935cb02d4a75715b17e7c14 (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 -f
fi

cd -
exec git update-server-info