Created
October 18, 2021 12:21
-
-
Save jbbarth/332ce541b345ab7f5bba1cce2f6a7983 to your computer and use it in GitHub Desktop.
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
gp() { | |
current_branch=$(git rev-parse --abbrev-ref HEAD) | |
if echo "$current_branch" | grep -qE '^(master|main|devel)$'; then | |
read "answer?You're about to push to a MAIN branch, are you sure? [y/N] " | |
if ! echo "$answer" | grep -qE '^y'; then | |
echo "aborting..." | |
return | |
fi | |
fi | |
git push origin HEAD | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment