-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcommit-msg-check.sh
56 lines (50 loc) · 1.88 KB
/
commit-msg-check.sh
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
#!/usr/bin/bash
target_branch=$1
source_branch=$2
commits=$(git rev-list ${target_branch}..${source_branch})
for commit in $commits; do
# If this commit is in master, skip it
if git branch master --contains $commit &> /dev/null; then
continue
fi
message=$(git log --format=%B -n 1 $commit)
lineNum=0
while IFS=$'\n' read -r line; do
# Next, check the requirements of the line
if [[ $lineNum -eq 0 ]]; then
if [[ ${#line} -gt 50 ]]; then
echo "$commit: $line"
echo "Commit message: Limit the subject line to 50 characters"
echo "https://chris.beams.io/posts/git-commit/#limit-50"
exit 1
fi
if [[ $line =~ ^[[:lower:]] ]]; then
echo "$commit: $line"
echo "Commit message: Capitalize the subject line"
echo "https://chris.beams.io/posts/git-commit/#capitalize"
exit 1
fi
if [[ $line =~ \.$ ]]; then
echo "$commit: $line"
echo "Commit message: Do not end the subject line with a period"
echo "https://chris.beams.io/posts/git-commit/#end"
exit 1
fi
elif [[ $lineNum -eq 1 ]]; then
if [[ ${#line} -ne 0 ]]; then
echo "$commit: $line"
echo "Commit message: Separate subject from body with a blank line"
echo "https://chris.beams.io/posts/git-commit/#separate"
exit 1
fi
else
if [[ ${#line} -gt 72 ]]; then
echo "$commit: $line"
echo "Commit message: Wrap the body at 72 characters"
echo "https://chris.beams.io/posts/git-commit/#wrap-72"
exit 1
fi
fi
lineNum=$((lineNum + 1))
done <<< "$message"
done