赞
踩
解决Git生成Change-Id的方法如下:
.git/hooks/
目录。cd /path/to/your/git/repo/.git/hooks/
commit-msg
(没有文件后缀)的文件,并将以下内容复制到文件中。- #!/bin/sh
- #
- # Automatically add a Change-Id to the commit message
- #
- commit_msg_file=$1
- temp_file=$(mktemp -t commit-msg-XXXXXX)
- commit=$(git rev-parse HEAD)
-
- echo "commit $commit" > $temp_file
- echo "" >> $temp_file
- cat $commit_msg_file >> $temp_file
-
- change_id=$(git hash-object -w -t commit $temp_file)
- echo "Change-Id: $change_id" >> $commit_msg_file
-
- rm $temp_file
chmod +x commit-msg
请注意,以上方法适用于本地仓库。如果你是在使用Gerrit进行代码审核,Gerrit会自动为每个提交生成Change-Id。如果在使用其他代码托管平台,可能需要根据平台的规范自行生成和添加Change-Id。
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。