Git Commit Message (Angular Template)
提交信息格式模板 <type>(<scope>): <subject> <body> BREAKING CHANGE: <changes> Closes <closes> Type - 提交类型 取值 适用范围 使用范围英文原文 feat (feature) 新功能、新特性 A new feature fix 修改 bug A bug fix docs 仅文档修改 Documentation only changes style 代码格式修改 Changes that do not affect the meaning of the code (white-space, formatting, missing semi-colons, etc) refactor 代码重构(重构,在不影响代码内部行为、功能下的代码修改) A code change that neither fixes a bug nor adds a feature perf 更改代码,以提高性能(在不影响代码内部行为的前提下,对程序性能进行优化) A code change that improves performance test 测试用例新增、修改 Adding missing or correcting existing tests build 影响项目构建或依赖项修改 Changes that affect the build system or external dependencies (example scopes: gulp, broccoli, npm) ci CI/CD 持续集成相关文件修改 Changes to our CI configuration files and scripts (example scopes: Travis, Circle, BrowserStack, SauceLabs) chore 其他修改(不在上述类型中的修改) Other changes that don’t modify src or test files revert 恢复上一次提交 Reverts a previous commit Scope - 此次变更的范围 用于说明 commit 影响的范围...