Skip to content

Instantly share code, notes, and snippets.

@hayes
Last active December 25, 2015 15:39
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save hayes/7000082 to your computer and use it in GitHub Desktop.
Save hayes/7000082 to your computer and use it in GitHub Desktop.
add branch name to commit if not on master
#!/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
@mmchugh
Copy link

mmchugh commented Oct 15, 2013

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