Skip to content

Instantly share code, notes, and snippets.

@ludder
Last active December 27, 2015 12:29
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ludder/7326589 to your computer and use it in GitHub Desktop.
Save ludder/7326589 to your computer and use it in GitHub Desktop.
Running Grunt or Codeception on Git pre-commit hook
echo "Start Git pre commit hook"
#!/bin/sh
# stash unstaged changes, run release task, stage release updates and restore stashed files
NAME=$(git branch | grep '*' | sed 's/* //')
# don't run on rebase
if [ $NAME != '(no branch)' ]
then
git stash -q --keep-index
# grunt release
php codecept.phar run
RETVAL=$?
if [ $RETVAL -ne 0 ]
then
exit 1
fi
git add .
git stash pop -q
fi
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment