Skip to content

Instantly share code, notes, and snippets.

@sjungling
Created April 6, 2016 04:45
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 sjungling/373a37060cbf9380856d9ab647bf215e to your computer and use it in GitHub Desktop.
Save sjungling/373a37060cbf9380856d9ab647bf215e to your computer and use it in GitHub Desktop.
Auto-append branch names to a commit message
#!/bin/sh
#
# Prepend the branch name to the commit message
#
# Add this file as [repo]/.git/hooks/prepare-commit-msg
#
# A couple notes:
# 1. The file must be executable (chmod +x prepare-commit-msg)
# 2. This works on a per-repo basis
BRANCH_NAME=$(git symbolic-ref --short HEAD)
if [ -n "$BRANCH_NAME" ] && [ "$BRANCH_NAME" != "master" ]; then
sed -i.bak -e "1s/^/$BRANCH_NAME - /" $1
fi
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment