代码拉取完成,页面将自动刷新
#!/usr/bin/env bash
#
# 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.
#
# To enable this hook, rename this file to "commit-msg".
# Uncomment the below to add a Signed-off-by line to the message.
# Doing this in a hook is a bad idea in general, but the prepare-commit-msg
# hook is more suited to it.
#
# SOB=$(git var GIT_AUTHOR_IDENT | sed -n 's/^\(.*>\).*$/Signed-off-by: \1/p')
# grep -qs "^$SOB" "$1" || echo "$SOB" >> "$1"
# This example catches duplicate Signed-off-by lines.
test "" = "$(grep '^Signed-off-by: ' "$1" |
sort | uniq -c | sed -e '/^[ ]*1[ ]/d')" || {
echo >&2 Duplicate Signed-off-by lines.
exit 1
}
COMMIT_MSG_FILE=$1
msg="$(grep -v '^#' "$COMMIT_MSG_FILE")"
echo -e "\033[33m The commit msg: \033[0m $msg"
#if the msg is merge then skip it
mergePattern='^Merge '
if [[ "$msg" =~ "$mergePattern" ]];then
echo -e "\033[32m skip the merge, commit success! \033[0m"
exit 0
fi
# check the first line of the commit msg
maxlen=200
first_line=$(echo "$msg" | head -n 1)
length=${#first_line}
msg_re="^(feat|fix|docs|style|refactor|test|chore)(\(.+\))?: .{1,200}"
if [[ ! $first_line =~ $msg_re ]];then
echo -e "\033[31m Error: the commit message is irregular \033[0m"
echo -e "\033[31m Error: type must be one of [feat|fix|docs|style|refactor|test|chore]\033[0m"
echo -e "\033[31m eg: feat(user): add the user login \033[0m"
echo -e "\033[31m See: https://confluence.shell.com.cn:9443/pages/viewpage.action?pageId=137398003 for details\033[0m"
exit 1
else
if [ $length -gt $maxlen ];then
echo -e "\033[31m Error: the first line of the commit message exceeds the max length of 200 characters \033[0m"
exit 1
fi
fi
exit 0
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。