docs: 精简 commit 类型

This commit is contained in:
pany 2024-11-19 14:45:40 +08:00
parent 80afc6e13f
commit 933b7f0cd9
2 changed files with 12 additions and 17 deletions

View File

@ -113,19 +113,16 @@ pnpm test
## Git 提交规范参考 ## Git 提交规范参考
- `feat` 增加新的业务功能 - `feat` 新功能
- `fix` 修复业务问题/BUG - `fix` 修复错误
- `perf` 优化性能 - `perf` 优化
- `style` 更改代码风格, 不影响运行结果
- `refactor` 重构代码 - `refactor` 重构代码
- `docs` 文档和注释
- `types` 类型相关
- `test` 单测相关
- `ci` 持续集成、工作流
- `revert` 撤销更改 - `revert` 撤销更改
- `test` 测试相关, 不涉及业务代码的更改 - `chore` 琐事(更新依赖、修改配置等)
- `docs` 文档和注释相关
- `chore` 更新依赖/修改脚手架配置等琐事
- `workflow` 工作流改进
- `ci` 持续集成相关
- `types` 类型定义文件更改
- `wip` 开发中
## 项目预览图 ## 项目预览图

View File

@ -3,14 +3,12 @@
"feat": { "title": "Feat" }, "feat": { "title": "Feat" },
"fix": { "title": "Fix" }, "fix": { "title": "Fix" },
"perf": { "title": "Perf" }, "perf": { "title": "Perf" },
"style": { "title": "Style" },
"refactor": { "title": "Refactor" }, "refactor": { "title": "Refactor" },
"revert": { "title": "Revert" },
"test": { "title": "Test" },
"docs": { "title": "Docs" }, "docs": { "title": "Docs" },
"chore": { "title": "Chore" }, "types": { "title": "Types" },
"workflow": { "title": "Workflow" }, "test": { "title": "Test" },
"ci": { "title": "CI" }, "ci": { "title": "CI" },
"types": { "title": "Types" } "revert": { "title": "Revert" },
"chore": { "title": "Chore" }
} }
} }