Based on Irakli idea, here is what I have working as a post-receive in my repo...
#!/bin/bash
MESSAGE=$(git log -1 HEAD --pretty=format:%s)
if [[ "$MESSAGE" == *\[staging\]* ]];
then
#action / update staging
# another method not being used...
# GIT_WORK_TREE=/path/to/working/site/ git checkout -q -f staging
echo "NOTE: Beginning Auto-Push to Staging Server... "
`git push staging`
echo "========================================================
======== Done! Pushed to STAGING.com =============
======== Thanks Captain. Keep up the good work! ========
========================================================"
elif [[ "$MESSAGE" == *\[production\]* ]];
then
#action / update production
echo "NOTE: Beginning Auto-Push to Production Server... "
# `git push production`
echo "========================================================
======== Done!!! Pushed to Production.com =======
======== Test immediately for any errors! =========
========================================================"
fi
Note:
to make the 'git push staging' work, you need to have a .git/hooks/post-reveive hook on that working tree. I used this code except I added 'umask 002 && git reset --hard' at the bottom.
I also had to add a denyrecive to that working tree's .git/config file:
[receive]
denycurrentbranch = ignore
Note 2:
Please note this setup IS NOT for everyone... only for small(ish) sites where quick & dirty updates are fine.