Skip to content

Instantly share code, notes, and snippets.

@HTLife
Created April 3, 2020 05:58
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save HTLife/8b8f543a1f5b7240bcb87b16af5170b5 to your computer and use it in GitHub Desktop.
Save HTLife/8b8f543a1f5b7240bcb87b16af5170b5 to your computer and use it in GitHub Desktop.
prepend JIRA ticket prefix to git commit message
#!/bin/sh
# Add git branch if relevant
parse_git_branch() {
git branch 2> /dev/null | sed -e '/^[^*]/d' -e 's/* \(.*\)/(\1)/'
}
# Extact tracker abbreviation and ticket number (e.g. DS-123)
parse_git_tracker_and_ticket() {
parse_git_branch | grep -e '[A-Z]\+-[0-9]\+' -o
}
MESSAGE="$(cat $1)"
TICKET=`parse_git_tracker_and_ticket`
if [ -n "$TICKET" ]
then
echo "New commit message: [$TICKET] $MESSAGE"
echo "$TICKET $MESSAGE" > $1
fi
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment