add some hooks

This commit is contained in:
2019-09-21 23:37:05 +02:00
parent c4c4567048
commit 786e5a2d03
3 changed files with 51 additions and 3 deletions

View File

@@ -0,0 +1,27 @@
#!/bin/bash
check_commit() {
# check the log message for ticket number
message=`git log --format=%s -1 $1`
ticket=`echo "$message" | grep -o "TG-[0-9]\+"`
if [ "$ticket" = "" ] ; then
echo "The first line of the commit message $1 don't contain a Taiga issue number (TG-<issue number>)"
exit 1
fi
}
NULL_SHA1="0000000000000000000000000000000000000000" # 40 0's
new_list=
any_deleted=false
while read oldsha newsha refname; do
new_list="$new_list $newsha"
done
git rev-list $new_list --not --all |
while read sha1; do
objtype=$(git cat-file -t $sha1)
case $objtype in
commit) check_commit $sha1;;
esac
done