Skip to content

Instantly share code, notes, and snippets.

@yltsrc
Last active December 25, 2015 06:29
Show Gist options
  • Save yltsrc/6932889 to your computer and use it in GitHub Desktop.
Save yltsrc/6932889 to your computer and use it in GitHub Desktop.
git pre commit hook with code review and test runner
#!/usr/bin/env bash
if [[ "$(git rev-parse --abbrev-ref HEAD)" == "master" ]]; then
echo "Please do not commit to master!";
exit 1;
else
exit 0;
fi
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment