在工作中为了规范大家的git提交,往往要求commit信息统一规范,在此情况下可以添加git commit模板,这样方便大家提交统一格式的commit信息,并且可以提高效率,具体方法如下:
添加示例内容如下:
[JIRA-ID][Component] Short Description of the change
More detail description.
git config --global commit.template gittemp
如果想在commit中添加作者签名,使用**-s**指令,如下
git commit -s
此时当我们输入git commit -s时就会自动创建如下commit内容
[JIRA-ID][Component] Short Description of the change
More detail description.
Signed-off-by: JiuWuyou #签名信息会自动提取git配置