aboutsummaryrefslogtreecommitdiffstats
path: root/git-tools/hooks/commit-msg
diff options
context:
space:
mode:
Diffstat (limited to 'git-tools/hooks/commit-msg')
-rwxr-xr-xgit-tools/hooks/commit-msg24
1 files changed, 0 insertions, 24 deletions
diff --git a/git-tools/hooks/commit-msg b/git-tools/hooks/commit-msg
deleted file mode 100755
index db31d93698..0000000000
--- a/git-tools/hooks/commit-msg
+++ /dev/null
@@ -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