Skip to content

Instantly share code, notes, and snippets.

@marceloalmeida
Forked from bartoszmajsak/prepare-commit-msg.sh
Last active April 22, 2019 11:03
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save marceloalmeida/067889e16abb243f98ac35e8943247bb to your computer and use it in GitHub Desktop.
Save marceloalmeida/067889e16abb243f98ac35e8943247bb to your computer and use it in GitHub Desktop.
How to automatically prepend git commit with a branch name

prepare-commit-msg

Hook to prepend branch name to commit for better integration with third party systems.

Installation

Install hook on git repository

curl -sL https://gist.github.com/marceloalmeida/067889e16abb243f98ac35e8943247bb/raw/prepare-commit-msg -o .git/hooks/prepare-commit-msg && \
chmod u+x .git/hooks/prepare-commit-msg
#!/bin/bash
# This way you can customize which branches should be skipped when
# prepending commit message.
if [ -z "$BRANCHES_TO_SKIP" ]; then
BRANCHES_TO_SKIP=(master develop test)
fi
BRANCH_NAME=$(git symbolic-ref --short HEAD)
BRANCH_NAME="${BRANCH_NAME##*/}"
BRANCH_EXCLUDED=$(printf "%s\n" "${BRANCHES_TO_SKIP[@]}" | grep -c "^$BRANCH_NAME$")
BRANCH_IN_COMMIT=$(grep -c "$BRANCH_NAME - " $1)
MERGE_COMMIT_MSG=$(head -n 1 $1 | grep -c "^Merge\ branch.*")
if [ -n "$BRANCH_NAME" ] && ! [[ $BRANCH_EXCLUDED -eq 1 ]] && ! [[ $BRANCH_IN_COMMIT -ge 1 ]] && [[ $MERGE_COMMIT_MSG -eq 0 ]]; 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