Skip to content

Instantly share code, notes, and snippets.

@davidjeddy
Created December 23, 2015 13:43
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 davidjeddy/2f4c8905feaf4503a55d to your computer and use it in GitHub Desktop.
Save davidjeddy/2f4c8905feaf4503a55d to your computer and use it in GitHub Desktop.
Automatically adds branch name to the start of every commit message.
#!/bin/bash
#
# Automatically adds branch name to the start of every commit message.
#
BRANCHNAME=$(git branch | grep '*' | sed 's/* //')
echo -e [$BRANCHNAME] $(cat "$1") > "$1"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment