Skip to content

Instantly share code, notes, and snippets.

@zilahir
Created January 5, 2020 22:52
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save zilahir/bceea378ba70f99be7a14c68030b0d11 to your computer and use it in GitHub Desktop.
Save zilahir/bceea378ba70f99be7a14c68030b0d11 to your computer and use it in GitHub Desktop.
prevent commit to master branch
#!/bin/sh
branch="$(git rev-parse --abbrev-ref HEAD)"
if [ "$branch" = "master" ]; then
echo "You can't commit directly to master branch"
exit 1
fi
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment