Dev Collection
HomeGitHubAI Web
  • ReadMe
  • How to use patch-package
  • Add GCC for node-canvas in Centos7.x
  • Create Server-Sent Events in Nextjs
  • TimeZone in Jest
  • Common Git Commit Message Types
  • Node v8 memory leak
  • minIO + picGO self-hosted image hosting service
  • Preventing SSH remote brute-force attacks
  • Ubuntu安装Netflix-Proxy
  • SNIProxy+Dnsmasq实现Netflix-Proxy
  • Simultaneously Pushing a Repository to Two Different Remotes: GitHub and GitLab
  • Typescript中的类型谓词
  • Mac Sonoma 无法安装 Charles 的解决办法
  • Git 多账号管理:在不同文件夹区分Git账号
  • localStorage VS IndexedDB
  • Chrome Extension 开发指南
Powered by GitBook
On this page

Common Git Commit Message Types

Git commit消息中一些常用的提交类型

类型
描述

feat (feature)

添加新功能或功能扩展。

fix

修复 bug 或错误。

docs

更新文档,如修改 README、添加注释等。

style

调整代码样式,如格式化代码、调整缩进等,不涉及功能修改。

refactor

重构代码,既不修复错误也不添加新功能的代码更改。

test

添加或修改测试代码,包括单元测试、集成测试等。

chore (choreography)

一般维护和杂项任务的更改。

perf (performance)

性能优化的更改。

revert

撤销先前的提交。

ci (continuous integration)

与持续集成相关的更改,如配置文件的更新、构建脚本的修改等。

build

与构建过程或工具相关的更改。

deps (dependencies)

更新依赖项或第三方库的更改。

release

发布新版本或进行版本管理的更改。

WIP (Work in Progress)

工作正在进行中,提交尚未完成。

PreviousTimeZone in JestNextNode v8 memory leak

Last updated 1 year ago