git提交commit message规范
业界通用的 git 提交规范有哪些?
1.commitizen
AngularJS 在 github上 的提交记录被业内许多人认可,逐渐被大家引用。
格式:type(scope) : subject
scope选填表示commit的作用范围,如数据层、视图层,也可以是目录名称
subject必填用于对commit进行简短的描述
type必填表示提交类型,值有以下几种:
- feat - 新功能 feature
- fix - 修复 bug
- docs - 文档注释
- style - 代码格式(不影响代码运行的变动)
- refactor - 重构、优化(既不增加新功能,也不是修复bug)
- perf - 性能优化
- test - 增加测试
- chore - 构建过程或辅助工具的变动
- revert - 回退
- build - 打包
All articles in this blog are licensed under CC BY-NC-SA 4.0 unless stating additionally.