-
Notifications
You must be signed in to change notification settings - Fork 1
/
prepare-commit-msg
57 lines (51 loc) · 2.22 KB
/
prepare-commit-msg
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
#!/bin/bash
# Author: 潘维吉
# Description: 自定义git hook提交信息规范 文件提交权限 代码格式化等
# 启动代码生成服务后 将自动复制本文件到本地项目.git/hooks目录下 才能生效
# Git提交信息
MSG=$(awk '{printf("%s",$0)}' $1)
(git diff --cached --name-status | while read status file; do
if [[ ${file} =~ code-generator.js || ${file} =~ code-template.js || ${file} =~ .ftl ]]; then
if [[ $(git config user.name) == panweiji ]]; then
echo "超级管理员具有全部文件提交权限!"
elif [[ $MSG =~ Merge\d* ]]; then
echo -e " Git自动Merge合并的信息跳过 ✅ "
else
echo "您没有${file}文件的提交权限, 请联系超级管理员!!!"
exit 1
fi
fi
if [[ ${file} =~ athena ]]; then
if [[ $(git config user.name) == panweiji]]; then
echo "管理员具有核心文件提交权限!"
elif [[ $MSG =~ Merge\d* ]]; then
echo -e " Git自动Merge合并的信息跳过 ✅ "
else
echo "您没有${file}文件的提交权限, 请联系超级管理员!!!"
exit 1
fi
fi
done) && (
types="feat|fix|test|refactor|docs|style|chore|build|perf|ci|revert|release"
if [[ $MSG =~ ^(${types}):' '.*$ || $MSG =~ ^(${types})\(.*\):' '.*$ ]]; then
# 判断git提交记录类型和描述是否一致
if [[ $MSG =~ feat ]]; then
feat_error_keyword="修复|修改|bug|删除|是否|合并|优化|重构|异常|测试|调试|说明|文档|回滚|样式|更新|调整|bug|BUG|Bug"
if [[ $MSG =~ ${feat_error_keyword} ]]; then
echo -e " ❌ Git提交信息不符合规范, 提交记录类型feat和描述不一致, 错误关键字: ${feat_error_keyword}"
exit 1
fi
fi
echo -e " Git提交成功 ✅ "
elif [[ $MSG =~ Merge\d* ]]; then
echo -e " Git自动合并的信息跳过 ✅ "
# if [[ $MSG =~ origin/dev ]]; then
# echo -e " 自动去除多余的Merge branch提交记录 使Git提交记录更简洁 "
# git rebase origin/dev
# fi
else
echo -e " ❌ Git提交信息不符合规范 , 类型必须是其中之一 [${types}], 英文:冒号后加单空格 再加提交说明 。"
echo -e " 示例: feat(app): 用户登录功能 "
exit 1
fi
)