Created
December 23, 2015 13:43
-
-
Save davidjeddy/2f4c8905feaf4503a55d to your computer and use it in GitHub Desktop.
Automatically adds branch name to the start of every commit message.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/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