diff options
Diffstat (limited to 'bin/post-receive')
| -rwxr-xr-x | bin/post-receive | 15 | 
1 files changed, 14 insertions, 1 deletions
diff --git a/bin/post-receive b/bin/post-receive index 996189d..be32fee 100755 --- a/bin/post-receive +++ b/bin/post-receive @@ -1,7 +1,20 @@  #!/bin/sh +# +# Post-receive git hook +#  cd ..  unset GIT_DIR -git checkout -f +if [ -d ".git/annex" ]; then +  git annex sync +else +	git config receive.denyCurrentBranch ignore +  git reset HEAD +  git checkout -f +fi +  git submodule update --init --recursive + +cd - +exec git update-server-info  | 
