Last active
November 18, 2020 12:54
-
-
Save evergosu/12e81769d38d930958fad18722c47de9 to your computer and use it in GitHub Desktop.
prepare-commit-msg
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 | |
| FILE=$1 | |
| MESSAGE=$(cat $FILE) | |
| TICKET=$(git rev-parse --abbrev-ref HEAD | grep -Eo '^(\w+/)?(\w+[-_])?[0-9]+' | grep -Eo '(\w+[-])?[0-9]+' | tr "[:lower:]" "[:upper:]") | |
| if [[ $TICKET == "" || "$MESSAGE" == "$TICKET"* ]];then | |
| exit 0; | |
| fi | |
| echo "$TICKET: $MESSAGE" > $FILE | |
| # then run to make it exe: chmod +x .git/hooks/prepare-commit-msg |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment