aboutsummaryrefslogtreecommitdiff
path: root/share/templater/pushtodeploy/files/post-receive
blob: 3e706e98432988084ded70c0895834ed4b957e1b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
#!/bin/sh
#
# Post-receive git hook
#

# Go to repository base
cd ..
unset GIT_DIR

# Check for a Makefile deploy target or run standard deployment
if [ -e "Makefile" ] && grep -q "^deploy:" Makefile; then
  make deploy
else
  if [ -d ".git/annex" ]; then
    git annex sync
  else
    git config receive.denyCurrentBranch ignore
    #git reset HEAD
    git checkout -f
  fi

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

  cd -
  exec git update-server-info
fi