git commit 规范

Posted on 2023-03-02 14:42  lyc2002  阅读(12)  评论(0编辑  收藏  举报
<type>(<scope>): <subject>
// 空一行
<body>
// 空一行
<footer>
  • type(必需):说明 commit 类别
    • feat:新功能
    • fix:修 bug
    • docs:文档
    • style:格式
    • refactor:重构
    • test:测试
    • chore:构建过程或辅助工具变动
  • scope(可选):用于说明 commit 影响的范围
  • subject(必需):commit 目的简短描述
  • body(可选):commit 详细描述
  • footer(可选):
    • 不兼容变动:BREAKING CHANGE
    • 关闭 issue:Closes #234