Skip to content

Instantly share code, notes, and snippets.

@jarofghosts
Forked from hayes/commit-msg
Last active December 25, 2015 15:39
Show Gist options
  • Star 2 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jarofghosts/7000116 to your computer and use it in GitHub Desktop.
Save jarofghosts/7000116 to your computer and use it in GitHub Desktop.
#!/bin/sh
#
# Simply prepends the branch name to every commit message
branch=$(git rev-parse --abbrev-ref HEAD)
if [ $branch != 'master' ] && [ $branch != 'HEAD' ]; then
echo "[$branch] `cat $1`" > $1
fi
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment