gitlab 中提交记录中信息很匮乏,需要完善。
一个建议:
配置commit template,每次commit 都记录本次修改的主要内容。
一个举例:
$ vim .commit_template
Feature:/
BugId:/
Description:
git config commit.template .commit_template
或者
git config --global commit.template .commit_template
template 可以自行定义,也可以团队约定(建议)。
扩展阅读:
老鸟都应该注意的git 提交规范
http://www.cnblogs.com/ctaodream/p/6066694.html
简介:
这里也提到了
这里给出两种方案,也是业界比较通用的
1. commitizen 交互式约束命令 提交
2.配置git commit 模板
Git 提交的正确姿势:Commit message 编写指南
https://www.oschina.net/news/69705/git-commit-message-and-changelog-guide?from=20160110
简介:
转载自 阮一峰 的博客。也提到了commit template 和 commitizen