Git提交规范
正文
- feat: A new feature
- fix: A bug fix
- perf: A code change that improves performance
- refactor: A code change that neither fixes a bug nor adds a feature
- test: Adding missing tests or correcting existing tests
- style: Changes that do not affect the meaning of the code (空格、格式化、分号缺失等)
- ci: Changes to our CI configuration files and scripts (examples: CircleCi, SauceLabs)
- docs: Documentation only changes
- chore: 构建过程或辅助工具的修改、修改工具相关(包括但不限于文档、代码生成、依赖更新/脚手架配置修改等)
- build: Changes that affect the build system or external dependencies (example scopes: gulp, broccoli, npm)
参考链接:
commit type
CI