/^#/ { next }
!/^.*$/ {
- print "Invalid character (not UTF-8) in commit message; see 'CONTRIBUTE'"
+ print "Invalid character (not UTF-8) in commit message"
status = 1
}
sub(/^squash! /, "")
if ($0 ~ "^" space) {
- print "White space at start of commit message'\''s first line; see 'CONTRIBUTE'"
+ print "White space at start of commit message'\''s first line"
status = 1
}
}
nlines == 2 && $0 ~ non_space {
- print "Nonempty second line in commit message; see 'CONTRIBUTE'"
+ print "Nonempty second line in commit message"
status = 1
}
}
78 < length && $0 ~ space {
- print "Line longer than 78 characters in commit message; see 'CONTRIBUTE'"
+ print "Line longer than 78 characters in commit message"
status = 1
}
140 < length {
- print "Word longer than 140 characters in commit message; see 'CONTRIBUTE'"
+ print "Word longer than 140 characters in commit message"
status = 1
}
/^Signed-off-by: / {
- print "'\''Signed-off-by:'\'' in commit message; see 'CONTRIBUTE'"
+ print "'\''Signed-off-by:'\'' in commit message"
status = 1
}
$0 ~ non_print {
- print "Unprintable character in commit message; see 'CONTRIBUTE'"
+ print "Unprintable character in commit message"
status = 1
}
END {
if (nlines == 0) {
- print "Empty commit message; see 'CONTRIBUTE'"
+ print "Empty commit message"
status = 1
}
+ if (status != 0) {
+ print "Commit aborted; please see the file 'CONTRIBUTE'"
+ }
exit status
}
' <"$1"