From 1cec45853e50ea863fb38d8d098ee2475360632d Mon Sep 17 00:00:00 2001 From: Kirito Date: Thu, 29 Jan 2026 18:02:10 +0800 Subject: [PATCH] =?UTF-8?q?=E6=96=B0=E5=A2=9E=E6=8F=90=E4=BA=A4=E4=BF=A1?= =?UTF-8?q?=E6=81=AF=E8=A7=84=E8=8C=83=E6=96=87=E6=A1=A3=EF=BC=8C=E9=87=87?= =?UTF-8?q?=E7=94=A8Angular=E8=A7=84=E8=8C=83=E6=A0=BC=E5=BC=8F?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- global-git-commit-instructions.md | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 global-git-commit-instructions.md diff --git a/global-git-commit-instructions.md b/global-git-commit-instructions.md new file mode 100644 index 0000000..b5850aa --- /dev/null +++ b/global-git-commit-instructions.md @@ -0,0 +1,17 @@ +Create the commit messages in Simplified Chinese + +为了方便追踪变更和生成 Changelog,使用 Angular 规范: +格式: (): +- type: + - feat: 新功能 + - fix: 修补bug + - docs: 文档修改 + - feat: 增加新的特征 + - format: 不影响代码含义的修改,比如空格、格式化、缺失的分号、引入顺序变化等 + - pref: 提高性能的代码更改 + - refactor: 既不是修复bug也不是添加特征的代码重构 + - build: 对构建系统或者外部依赖项进行了修改 + - ci: 对CI配置文件或脚本进行了修改 + - test: 增加确实的测试或者矫正已存在的测试 +- scope: 影响范围(如 auth, ui, v1.0) +- subject: 简短描述 \ No newline at end of file