# Common Git Commit Message Types

<table><thead><tr><th width="223">类型</th><th>描述</th></tr></thead><tbody><tr><td>feat (feature)</td><td>添加新功能或功能扩展。</td></tr><tr><td>fix</td><td>修复 bug 或错误。</td></tr><tr><td>docs</td><td>更新文档，如修改 README、添加注释等。</td></tr><tr><td>style</td><td>调整代码样式，如格式化代码、调整缩进等，不涉及功能修改。</td></tr><tr><td>refactor</td><td>重构代码，既不修复错误也不添加新功能的代码更改。</td></tr><tr><td>test</td><td>添加或修改测试代码，包括单元测试、集成测试等。</td></tr><tr><td>chore (choreography)</td><td>一般维护和杂项任务的更改。</td></tr><tr><td>perf (performance)</td><td>性能优化的更改。</td></tr><tr><td>revert</td><td>撤销先前的提交。</td></tr><tr><td>ci (continuous integration)</td><td>与持续集成相关的更改，如配置文件的更新、构建脚本的修改等。</td></tr><tr><td>build</td><td>与构建过程或工具相关的更改。</td></tr><tr><td>deps (dependencies)</td><td>更新依赖项或第三方库的更改。</td></tr><tr><td>release</td><td>发布新版本或进行版本管理的更改。</td></tr><tr><td>WIP (Work in Progress)</td><td>工作正在进行中，提交尚未完成。</td></tr></tbody></table>


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://dev.viku.org/common-git-commit-message-types.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
