Inspirado por la respuesta de Tim que se basa en la respuesta principal, resulta que el gancho prepare-commit-msg toma como argumento qué tipo de compromiso está ocurriendo . Como se ve en el prepare-commit-msg predeterminado, si $ 2 es 'fusionar', entonces es una confirmación de fusión. Por lo tanto, el cambio de mayúsculas y minúsculas se puede modificar para incluir la función addBranchName () de Tim.
He incluido mi propia preferencia sobre cómo agregar el nombre de la rama y todas las partes sin comentarios del prepare-commit-msg.sample
gancho predeterminado .
prepare-commit-msg
#!/bin/sh
addMyBranchName() {
# Get name of current branch
NAME=$(git branch | grep '*' | sed 's/* //')
# First blank line is title, second is break for body, third is start of body
BODY=`cut -d \| -f 6 $1 | grep -v -E .\+ -n | cut -d ':' -f1 | sed '3q;d'`
# Put in string "(branch_name/): " at start of commit message body.
# For templates with commit bodies
if test ! -z $BODY; then
awk 'NR=='$BODY'{$0="\('$NAME'/\): "}1;' $1 > tmp_msg && mv tmp_msg "$1"
else
echo "title\n\n($NAME/):\n`cat $1`\n" > "$1"
fi
}
# You might need to consider squashes
case "$2,$3" in
# Commits that already have a message
commit,?*)
;;
# Messages are one line messages you decide how to handle
message,)
;;
# Merge commits
merge,)
# Comments out the "Conflicts:" part of a merge commit.
perl -i.bak -ne 's/^/# /, s/^# #/#/ if /^Conflicts/ .. /#/; print' "$1"
;;
# Non-merges with no prior messages
*)
addMyBranchName $1
;;
esac