Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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)

share|improve this question
Your production webserver probably shouldn't be pushing automated changes to your Git repo. If you want things compiled in Git, do it before you push to production. – Amber Aug 11 '12 at 7:11
this isn't a production webserver - I use it for development. The doc-root is password-protected. – NaN Aug 11 '12 at 7:19
Okay, but the point still stands for a development definition of "production" - do compiles before you push to your web server's serving directory, not afterwards. – Amber Aug 11 '12 at 7:40
this isn't a good opinion, because everyone would have to install an lessc compiler on the local machine (inclusive node.js..) – NaN Aug 11 '12 at 7:46
2  
Compiling before you copy to your web server's serving directory doesn't mean that you have to compile on local machines. It just means that you should have a separate step in your deployment process that handles the compiling, and that step should come before the "copy to serving directory" step. For instance, you could have a post-receive hook on your bare repo that uses git archive to 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
show 4 more comments

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.