Last active
December 27, 2015 12:29
Revisions
-
ludder renamed this gist
Nov 5, 2013 . 1 changed file with 0 additions and 0 deletions.There are no files selected for viewing
File renamed without changes. -
ludder created this gist
Nov 5, 2013 .There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,25 @@ 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