Last active
October 19, 2015 16:31
-
-
Save tsimons/33ac04af28160f46e630 to your computer and use it in GitHub Desktop.
Git Hooks
This file contains 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 characters
#!/bin/sh | |
red='\033[0;31m' | |
NC='\033[0m' # No Color | |
if !(grep -Fq "[MT-" .git/COMMIT_EDITMSG) | |
then | |
echo "" | |
echo "${red}WARNING! ${NC}Jira ID not found in commit message. Run \"git commit --amend\" before you push, to add it" | |
echo "" | |
fi | |
exit 0 |
This file contains 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 characters
#!/bin/sh | |
dir='src/' | |
pass=true | |
result=$(eslint ${config} $dir) | |
if [ "$result" != "" ]; then | |
echo "\t\033[31mJSHint Failed on: ${file}\033[0m\n" | |
echo "\t\033[31mThe following error was found:\033[0m" | |
echo "\t\033[31m$result\033[0m" | |
pass=false | |
fi | |
if ! $pass; then | |
echo "\033[41mCOMMIT FAILED:\033[0m Your commit contains files that should pass ESLint but do not. Please fix the ESLint errors and try again.\n" | |
exit 1 | |
fi |
This file contains 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 characters
#!/bin/sh | |
red='\033[0;31m' | |
NC='\033[0m' # No Color | |
echo "Running unit tests..." | |
PORT=9000 grunt run-javascript-unit-tests &>/dev/null | |
if [ $? -eq 0 ] | |
then | |
exit 0 | |
fi | |
echo "" | |
echo "${red}UNIT TESTS FAILED. ${NC}Open http://localhost:8880/plstack/unit-test-runner/tests/unit.html or run grunt build-test to see which failed" | |
echo "Fix the failed tests in order to push your changes" | |
echo "" | |
exit 1 |
This file contains 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 characters
#!/bin/sh | |
ORIG_MSG_FILE="$1" | |
TEMP=`mktemp /tmp/git-XXXXX` | |
TICKETNO=`git branch | grep '^\*' | sed 's:* ::' | cut -f 3 -d ' '` | |
(echo "[$TICKETNO]"; cat "$ORIG_MSG_FILE") > "$TEMP" | |
cat "$TEMP" > "$ORIG_MSG_FILE" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment