Created
May 17, 2022 18:52
-
-
Save selfagency/87ac75b65b0dd19f62d497d84b7fd368 to your computer and use it in GitHub Desktop.
[Git hook to protect branch]
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
protected_branch='master' | |
current_branch=$(git symbolic-ref HEAD | sed -e 's,.*/\(.*\),\1,') | |
if [ $protected_branch = $current_branch ] | |
then | |
read -p "You're about to push master, is that what you intended? [y|n] " -n 1 -r < /dev/tty | |
echo | |
if echo $REPLY | grep -E '^[Yy]$' > /dev/null | |
then | |
exit 0 # push will execute | |
fi | |
exit 1 # push will not execute | |
else | |
exit 0 # push will execute | |
fi | |
# Taken from https://ghost.org/changelog/prevent-master-push/ |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment