I want to develop my websites per git, but I have some sort of chicken and egg problem. There is one server with an git --bare repository (the main repo; /var/dev.git) one clone for the doc-root (var/www) of the apache webserver and for each user one local repository.
Ok, this works really nice, but now I want to add a "special" feature. If someone adds an .less file and pushes it to the main-repo it should be "compiled" into a css file and added to the repository. Furthermore the www-clone should pull all new files (including the new css-styles) back into the main-repo.
My first attempt
First I force the www-root-repo to pull the newest changes, then I try to find all less files and fire the less compiler.
lessc [input] [output]
The problem is that git seems to trigger the post-receive on a pull and a push and recalls-itself in the fashion of an infinit loop (it stops with a error building trees)
#!/bin/sh
git --git-dir /var/www/.git reset --hard HEAD
git --git-dir /var/www/.git pull /var/dev.git master
echo "###### fire LESS Compiler #####"
find /var/www -name *.less -exec sh -c 'lessc {} $(dirname {})/
$(echo $( basename {} .less)$( echo ".css" )) >> $(dirname {})
/less_error.log 2>&1 ' \;
echo "###### add new less-out files to repo #####"
git --git-dir /var/www/.git add .
git --git-dir /var/www/.git commit -am "css style added"
git --git-dir /var/www/.git push /var/dev.git master
echo "########### END #############"
To get the less error messages I pipe the stderr to the stdout (because AFAIK appending isn't possible with the stderr-pipe-redirection) and append it to an error_less-file. (second question:) How can I fore it to create the file only if an error occours? (At the moment its created on every lessc-call)
git archiveto export the files to a temporary directory, run the compiler, and then copies the result to the web server's serving directory. – Amber Aug 11 '12 at 8:20