Skip to content

Instantly share code, notes, and snippets.

@mmynsted
Created October 28, 2015 21:59
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
Star You must be signed in to star a gist
Embed
What would you like to do?
#!/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