Created
October 9, 2019 15:38
-
-
Save doromones/9c24bc084243c9951b0507298dab32d1 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
| #!/bin/bash | |
| protected_branches=(develop master) | |
| current_branch=$(git symbolic-ref HEAD | sed -e 's,.*/\(.*\),\1,') | |
| if [[ " ${protected_branches[@]} " =~ " ${current_branch} " ]] | |
| then | |
| echo "Push to $current_branch is disabled" | |
| exit 1 # push will not execute | |
| else | |
| exit 0 # push will execute | |
| fi |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment