首页 > 解决方案 > 关于 git 中常规提交消息的问题

问题描述

我正在尝试适应本文中描述的常规提交消息

这是文章的一个片段:

允许<type>值:

feat (new feature)
fix (bug fix)
docs (changes to documentation)
style (formatting, missing semi colons, etc; no code change)
refactor (refactoring production code)
test (adding missing tests, refactoring tests; no production code change)
chore (updating grunt tasks etc; no production code change)

但有时有一些变化很难归类为这种类型。我将列出一些更改,其中 w/ci 对使用哪种类型感到困惑

在这种情况下我应该使用什么类型

  1. 我在现有组件上添加了一个 CSS 样式(反应、角度、vue 等)
  2. 我在我的项目中编辑了配置文件,例如package.json.prettierc等。
  3. 重命名文件
  4. 删除文件

标签: gitconventional-commits

解决方案


您所指的是来自 Angular 的提交规则的启发:

https://github.com/angular/angular.js/blob/master/DEVELOPERS.md#commits

另见:

https://github.com/commitizen/conventional-commit-types/blob/master/index.json

https://github.com/pvdlg/conventional-commit-types

我认为对于您的一些观点,例如“删除文件”,这可能取决于您删除它的原因。例如,删除一个文件,因为您已将其代码移动到更合乎逻辑的位置 - 它可能是一个重构


推荐阅读