diff options
Diffstat (limited to 'git-tools/hooks/prepare-commit-msg')
| -rwxr-xr-x | git-tools/hooks/prepare-commit-msg | 10 | 
1 files changed, 9 insertions, 1 deletions
| diff --git a/git-tools/hooks/prepare-commit-msg b/git-tools/hooks/prepare-commit-msg index 033cb187c7..2bf25e58a4 100755 --- a/git-tools/hooks/prepare-commit-msg +++ b/git-tools/hooks/prepare-commit-msg @@ -30,5 +30,13 @@ branch="$(echo "$branch" | sed "s/refs\/heads\///g")"  # * also make sure the branch name begins with bug/ or feature/  if [ "$2" = "" ]  then -	echo "[$branch] $(cat "$1")" > "$1" +	tail=""; + +	# Branch is prefixed with 'ticket/', append ticket ID to message +	if [ "$branch" != "${branch##ticket/}" ]; +	then +		tail="\n\nPHPBB3-${branch##ticket/}"; +	fi + +	echo "[$branch]$tail $(cat "$1")" > "$1"  fi | 
