23 lines
797 B
Plaintext
23 lines
797 B
Plaintext
|
#!/bin/sh
|
||
|
#
|
||
|
# This hook does only one thing:
|
||
|
#
|
||
|
# 1. It calls the gitpostupdate.php script with the current $GIT_DIR
|
||
|
# as argument. The gitpostupdate.php script will then trigger
|
||
|
# the 'gitpostupdate.php::run' event with the $GIT_DIR as argument
|
||
|
# together with merged $_ENV and $_SERVER array.
|
||
|
#
|
||
|
# This hook is normally installed automatically at the creation of your
|
||
|
# repository if you have everything configured correctly. If you want
|
||
|
# to enable it later, you need to symlink it as "post-update" in your
|
||
|
# $GIT_DIR/hooks folder.
|
||
|
#
|
||
|
# git$ cd /home/git/repositories/project.git/hooks
|
||
|
# git$ ln -s /home/www/indefero/scripts/git-post-update post-update
|
||
|
#
|
||
|
|
||
|
SCRIPTDIR=$(dirname $(readlink -f $0))
|
||
|
PHP_POST_UPDATE=$SCRIPTDIR/gitpostupdate.php
|
||
|
|
||
|
echo php $PHP_POST_UPDATE $GIT_DIR | at now
|