1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-07-31 05:50:42 +02:00

[task/git-tools] Append ticket identifier to commit message prior to editing.

PHPBB3-9770
This commit is contained in:
Chris Smith
2010-07-08 00:27:45 +01:00
parent 14e5da90c3
commit bfa7b28734
2 changed files with 9 additions and 25 deletions

View File

@@ -1,24 +0,0 @@
#!/bin/sh
#
# A hook to append PHPBB3-<ticket_id> to ticket/<ticket_id>
# branches.
#
# This is a commit-msg hook.
#
# To install this you can either copy or symlink it to
# $GIT_DIR/hooks, example:
#
# ln -s ../../git-tools/hooks/commit-msg \\
# .git/hooks/commit-msg
if grep '^\[ticket/' "$1"
then
# get branch name
branch="$(git symbolic-ref HEAD)"
# strip off refs/heads/ticket
ticket_id="$(echo "$branch" | sed "s/refs\/heads\/ticket\///g")"
echo >> "$1"
echo "PHPBB3-$ticket_id" >> "$1"
fi