この質問に基づいて、私はgitフックを作成しましたprepare-commit-msg
#!/bin/sh
#
# Automatically adds branch name and branch description to every commit message.
#
NAME=$(git branch | grep '*' | sed 's/* //')
DESCRIPTION=$(git config branch."$NAME".description)
echo "[$NAME]"': '$(cat "$1") > "$1"
if [ -n "$DESCRIPTION" ]
then
echo "" >> "$1"
echo $DESCRIPTION >> "$1"
fi
単純なコミットではうまく機能します。例 - [issue14020]: some text message
issue14020 ブランチでコミットが行われた場合。
しかし、その後、リベースを作成すると、次のようなメッセージが表示されます[(no branch)]: [issue14020]: some text message
。この「分岐なし」の部分をスキップする方法はありますか?