Commit规范

在对项目作出更改后,我们需要生成 commit 来记录自己的更改。以下是 commit 格式的规范:

(1) 格式

提交信息包括三个部分:HeaderBodyFooter

  1. <Header>
  2. <Body>
  3. <Footer>

其中,Header 是必需的,Body 和 Footer 可以省略。

1> Header

Header 部分只有一行,包括俩个字段:type(必需)和subject(必需)。

  1. <type>: <subject>

type

type 用于说明 commit 的类别,可以使用如下类别:

  • feat:新功能(feature)
  • fix:修补bug
  • doc:文档(documentation)
  • style: 格式(不影响代码运行的变动)
  • refactor:重构(即不是新增功能,也不是修改bug的代码变动)
  • test:增加测试
  • chore:构建过程或辅助工具的变动

subject

subject 是 commit 目的的简短描述。

  • 修改了哪个模块的代码
  • 以动词开头,使用第一人称现在时,比如改变,而不是改变了。
  • 结尾不加句号(。)

2> Body

Body 部分是对本次 commit 的详细描述,可以分成多行。下面是一个范例。

  1. More detailed explanatory text, if necessary. Wrap it to
  2. about 72 characters or so.
  3. Further paragraphs come after blank lines.
  4. - Bullet points are okay, too
  5. - Use a hanging indent

注意:应该说明代码变动的动机,以及与以前行为的对比。

​ Footer 部分应该包含:(1)Breaking Changes; (2)关闭 issue;

Breaking Changes

​ 如果当前代码与上一个版本不兼容,则 Footer 部分以BREAKING CHANGE开头,后面是对变动的描述、以及变动理由和迁移方法。这种使用较少,了解即可。

Issue 部分:

  • 通过 commit 关联 issue:

    如果当前提交信息关联了某个 issue,那么可以在 Footer 部分关联这个 issue:

    1. issue #2
  • 通过 commit 关闭 issue,当提交到默认分支时,提交信息里可以使用 fix/fixes/fixedclose/closes/closed 或者 resolve/resolves/resolved等关键词,后面再跟上 issue 号,这样就会关闭这个 issue:

  1. Closes #1

​ 注意,如果不是提交到默认分支,那么并不能关闭这个 issue,但是在这个 issue 下面会显示相关的信息表示曾经想要关闭这个 issue,当这个分支合并到默认分支时,就可以关闭这个 issue 了。

4> 例子

下面是一个完整的例子:

  1. feat:KVCache: support data migration
  2. traverse hashmap and write data to dst CacheServer.
  3. - support traverse hashmap
  4. - support write data to another CacheServer
  5. Issue #1, #2
  6. Closes #1