Skip to content

Instantly share code, notes, and snippets.

@mmynsted
Created October 28, 2015 21:59
Show Gist options
  • Save mmynsted/f25a9e5c03db4cee686e to your computer and use it in GitHub Desktop.
Save mmynsted/f25a9e5c03db4cee686e to your computer and use it in GitHub Desktop.
#!/bin/sh
#.git/hooks/prepare-commit-msg
original="$1"
temp=`mktemp /tmp/git-XXXXX`
ticket=`git branch | grep '^\*' |sed -e 's@.*/@@'`
(printf "\n\n$ticket"; cat "$original") > "$temp"
cat "$temp" > "$original"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment