Skip to content

Instantly share code, notes, and snippets.

@finevine
Created June 28, 2020 20:42
Show Gist options
  • Save finevine/a26ed6e5064bfb08d760c9e419d81160 to your computer and use it in GitHub Desktop.
Save finevine/a26ed6e5064bfb08d760c9e419d81160 to your computer and use it in GitHub Desktop.
#!/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
# chmod +x .git/hooks/pre-commit
@finevine
Copy link
Author

Prevent local master from being commited

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment