我通过TortoiseGit在Windows上使用Git,目前我正在尝试使用this commit-msg hook来检查提交消息的长度'线。
当我使用ASCII字符专门编写消息时,一切都很好。但是当我用俄语写一条消息时,字符计数器会产生比实际长度大两倍的结果。当邮件被保存为UTF-8文件时,看起来计数器使用默认的Windows编码或类似的东西。
一些亮点:
.git/COMMIT_EDITMSG
具有UTF-8编码; echo $line
正确显示非ASCII字符; ${#line}
返回的值等于actual_length * 2
; Update 1 :我希望在不添加环境依赖性的情况下实现我的目标(即不安装Python等其他解释器)。
答案 0 :(得分:1)
不计算字节数 - 计算字符数。即,在编程语言中将输入从字节转换(解码)到字符。以UTF-8编码的俄语字符占用2个字节。示例(在Python中):
$ python
>>> len('тест')
8
>>> len(u'тест')
4
>>> len('тест'.decode('utf-8'))
4
答案 1 :(得分:0)
目前,echo $line | iconv --from-code UTF-8 --to-code cp866
已经成功了。
它涵盖了我的用例(消息中只有西里尔字符或基本拉丁字符),但缺乏一般性。我希望有人知道更清洁的解决方案。
这是我目前的剧本:
#!/bin/bash
#http://chris.beams.io/posts/git-commit/#seven-rules
cnt=0
while IFS='' read -r line || [[ -n "$line" ]]; do
cnt=$((cnt+1))
cp866_line=`echo $line | iconv --from-code UTF-8 --to-code cp866`
if [ $? -eq 0 ]; then
length=${#cp866_line}
else
length=${#line}
fi
if [ $cnt -eq 1 ]; then
# Checking if subject exceeds 50 characters
if [ $length -gt 50 ]; then
echo "Your subject line exceeds 50 characters"
exit 1
fi
i=$(($length-1))
last_char=${line:$i:1}
# Subject line must not end with a period
if [[ $last_char == "." ]]; then
echo "Your subject line ends with a period"
exit 1
fi
elif [ $cnt -eq 2 ]; then
# Subject must be followed by a blank line
if [ $length -ne 0 ]; then
echo "Your subject line is followed by a non-empty line"
exit 1
fi
else
# Any line in body must not exceed 72 characters
if [ $length -gt 72 ]; then
echo "The line \"$line\" exceeds 72 characters"
exit 1
fi
fi
done < "$1"