Skip to content

Instantly share code, notes, and snippets.

@borantula
Created February 21, 2020 16:32
Show Gist options
  • Save borantula/6f8284e0c1c20135cb9522a6a11d2f14 to your computer and use it in GitHub Desktop.
Save borantula/6f8284e0c1c20135cb9522a6a11d2f14 to your computer and use it in GitHub Desktop.
Prevent commit to master pre commit hook
///~/projects/xxx/.git/hooks $ cat pre-commit
#!/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