Skip to content

Instantly share code, notes, and snippets.

@tsimons
Last active October 19, 2015 16:31
Show Gist options
  • Save tsimons/33ac04af28160f46e630 to your computer and use it in GitHub Desktop.
Save tsimons/33ac04af28160f46e630 to your computer and use it in GitHub Desktop.
Git Hooks
#!/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
#!/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
#!/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
#!/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