Skip to content

Instantly share code, notes, and snippets.

@ain
Created November 19, 2018 21:00
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 ain/d29ba5cec8a125db94a68355f2c71fda to your computer and use it in GitHub Desktop.
Save ain/d29ba5cec8a125db94a68355f2c71fda to your computer and use it in GitHub Desktop.
Check last commit message for [hotfix]
#/bin/bash
if [[ `git log -1 --pretty=%B` == *"[hotfix]"* ]]; then
echo "HOTFIX!"
else
echo "NOT HOTFIX!"
fi
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment