Skip to content

Instantly share code, notes, and snippets.

@vegaasen
Created December 19, 2019 13:32
Show Gist options
  • Save vegaasen/18bd3dd9e07e88f1dff3ae6b65a1afb8 to your computer and use it in GitHub Desktop.
Save vegaasen/18bd3dd9e07e88f1dff3ae6b65a1afb8 to your computer and use it in GitHub Desktop.
githooks > commit-msg
#!/bin/sh
#
# An example hook script to check the commit log message.
# Called by "git commit" with one argument, the name of the file
# that has the commit message. The hook should exit with non-zero
# status after issuing an appropriate message if it wants to stop the
# commit. The hook is allowed to edit the commit message file.
#
# Place this file under "<project-home>/.githooks/commit-msg"
# Allow only e.g "PK-12345: ", "FPFEIL-12: ", "FIX: " eller "Merge "
regex="^(PK-[0-9]{5}|FPFEIL-[0-9]{1,}|FIX|Merge|NOJIRA|RELEASE|PKMANTIS-[0-9]{1,}|PFP-[0-9]{1,}|updating poms)(:|,)? .*"
commit_msg=$(cat $1)
error_msg="Avbryter commit. Det er kun tillat med commit meldinger som begynne med \"PK-nnnnn \", \"PFP-nnnnn \", \"FPFEIL-nn \", \"FIX \", \"NOJIRA\" eller \"Merge \"."
if [[ ! $commit_msg =~ $regex ]]; then
echo "$error_msg" >&2
exit 1
fi
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment