Skip to content

一、约定式提交

1. 约定式提交规范

git-commit-standard.png

该规范由目前使用较多的Angular团队规范 延伸出的 Conventional Commits specification(约定式提交)

  • 约定式提交规范如下:

    text
      <type>[optional scope]: <description>
    
      [optional body]
      
      [optional footer(s)]
      
      --------  翻译 -------------
      
      <类型>[可选 范围]: <描述>
      
      [可选 正文]
      
      [可选 脚注]

    其中<type> 类型,必须是一个可选的值,比如:新功能:feat 修复:fix 文档变更:docs

    也就是说,如果按照 约定式提交规范 来提交代码,那么一次提交描述应该是:

    text
     fix[登录]: 修复登录表单校验失败
     修改验证正则
     第xxx个issue

Released under the MIT License.