aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndreas Fischer <bantu@phpbb.com>2014-02-21 00:52:01 +0100
committerAndreas Fischer <bantu@phpbb.com>2014-02-21 01:47:45 +0100
commitfe5858902ed412946858b3f3358c3ac7a9163b49 (patch)
treea111d855123eb9b6c2bb0cdbfa83ee8e4421a757
parent[ticket/11509] Three dots means sym. difference, but we only want new commits. (diff)
downloadphpbb-fe5858902ed412946858b3f3358c3ac7a9163b49.tar.gz
phpbb-fe5858902ed412946858b3f3358c3ac7a9163b49.tar.bz2
phpbb-fe5858902ed412946858b3f3358c3ac7a9163b49.zip
[ticket/11509] Output which commit is being inspected.
PHPBB3-11509
-rwxr-xr-xgit-tools/commit-msg-hook-range.sh2
1 files changed, 2 insertions, 0 deletions
diff --git a/git-tools/commit-msg-hook-range.sh b/git-tools/commit-msg-hook-range.sh
index 3d0f22ac53..a0d165b726 100755
--- a/git-tools/commit-msg-hook-range.sh
+++ b/git-tools/commit-msg-hook-range.sh
@@ -20,6 +20,8 @@ COMMIT_RANGE="$1"
for COMMIT_HASH in $(git rev-list --no-merges "$COMMIT_RANGE")
do
+ echo "Inspecting commit message of commit $COMMIT_HASH"
+
# The git commit-msg hook takes a path to a file containing a commit
# message. So we have to extract the commit message into a file first,
# which then also needs to be deleted after our work is done.