本项目以目前使用较多的 Angular 团队规范 Conventional Commits specification(约定式提交) 为例. git hook 官方文档

git 提交时,主要分为三部分

  • commitizen:生成 commit message
  • commitlint:校验 commit message
  • conventional-changelog:生成 changelog

如何将这几步串联起来?使用全新项目来演示。示例项目

第一步,新建全新项目

> npm create vite my-vue-app -- --template vue

第二步,制定 eslint 代码规范。

创建 .eslintrc.js 和 .eslintignore 文件
这里四步走:

  1. 安装
  2. 添加指令
  3. 执行指令
  4. 打开文件,查看效果
# 1.安装
> npm i -D eslint eslint-plugin-vue @typescript-eslint/eslint-plugin eslint-plugin-prettier @typescript-eslint/parser eslint-config-prettier

添加指令。 在 package.json 中添加一条 script 中的指令**"lint": "eslint src --fix --ext .ts,.tsx,.vue,.js,.jsx"**

{"scripts": {...,"lint": "eslint src --fix --ext .ts,.tsx,.vue,.js,.jsx",...,},}

接下来执行命令

> npm run lint

执行完成后,打开文件查看效果。(你可以将双引号改为单引号,并执行指令后 对比指令前后的文件内容)
你会发现代码已经按照 eslint 规则被格式化。

第三步,制定 prettier 代码规范。

创建 .prettier.js 和 .prettierignore 文件.与上一步同样流程

# 安装
> npm i -D prettier# 执行命令后,打开文件查看对比效果
> npm run prettier

第四步,制定 git commit 规范

  1. 安装使用包 Commitizen 帮助规范化提交代码 ( 这一步的目的是安装完成后,直接使用指令 git cz 来取代 git commit 进行代码提交)
# 安装
> npm i -g commitizen cz-conventional-changelog

安装完成后,接下来在 package.json 中添加两部分内容

  1. 添加一条 script 中的指令 "commit": "git-cz"
  2. 添加 config 中内容
{"script": {...,"commit": "git-cz",},"config": {"commitizen": {"path": "node_modules/cz-conventional-changelog"}}
}

到这里,已经完成了 git 提交规范制定

执行命令,查看效果吧

> git add .# 提交方式一: 使用 `git cz`
> git cz
# 或者提交方式二: 使用 `npm run commit`
> npm run commit

tips:到了这里需要注意,以后 git 提交代码时不要使用 git commit 去提交而要使用git cz


在上一步使用 git cz 进行提交时,提示语都是英文,难以理解,转换为我们自定义的 Adapter中文选项。这里使用包 cz-custionizable 定制:

# 安装
> npm i -g cz-customizable

修改 package.json 中的 config 为:

  "config": {"commitizen": {"path": "node_modules/cz-customizable"}},

修改完成后,在项目目录下创建一个配置文件 .cz-config.js

module.exports = {// 可选类型types: [{ value: "feat", name: "feat:     新功能" },{ value: "fix", name: "fix:      修复" },{ value: "docs", name: "docs:     文档变更" },{ value: "style", name: "style:    代码格式(不影响代码运行的变动)" },{value: "refactor",name: "refactor: 重构(既不是增加feature,也不是修复bug)",},{ value: "perf", name: "perf:     性能优化" },{ value: "test", name: "test:     增加测试" },{ value: "chore", name: "chore:    构建过程或辅助工具的变动" },{ value: "revert", name: "revert:   回退" },{ value: "build", name: "build:    打包" },],// 消息步骤messages: {type: "请选择提交类型:",customScope: "请输入修改范围(可选):",subject: "请简要描述提交(必填):",body: "请输入详细描述(可选):",footer: "请输入要关闭的issue(可选):",confirmCommit: "确认使用以上信息提交?(y/n/e/h)",},// 跳过问题skipQuestions: ["body", "footer"],// subject文字长度默认是72subjectLimit: 72,
};

OK, 这里已经完成了我们自定义的 Adapter, 我们测试一下

> git cz

针对自定义的 Adapter 进行 Lint

很多时候,我们会忘记了应该使用git cz, 一不小心就用 git commit 提交了代码,上面的所有限制就都没用了, 所以此时需要 针对自定义的 Adapter 进行 Lint。 限制一下,要求所有的提交内容都必须要按照规则来,否则拒绝提交。

  1. commitlint: 帮助我们 限制 git 提交时的信息, 如果我们提交的不符合指向的规范, 直接拒绝提交
> npm i -D commitlint @commitlint/config-conventional @commitlint/cli

创建 .commitlintrc.js并写入以下内容

module.exports = {extends: ["@commitlint/config-conventional"],rules: {},
};
  1. 我们使用了自定义的 Apadter,那么针对自定义的 Adapter 进行 限制
> npm i -D commitlint-config-cz @commitlint/cli

接下来 在 .commitlintrc.js 中写入:

module.exports = {extends: ["cz"],rules: {},
};
  1. 校验 commit message 的最佳方式是结合 git hook, 所以需要使用到工具 Huskylint-staged(只检查 git 提交到缓存区中的内容)
> npm i -D husky
> npx mrm@2 lint-staged# 添加钩子
> npx husky add .husky/pre-commit "npx lint-staged"
npx husky add .husky/commit-msg 'npx --no-install commitlint --edit "$1"'

package.json 中添加

{"scripts": {"prepare": "husky install"}
}

然后执行

> npm run prepare

此时,husky 会在目录 .husky下生成两个没有后缀的文件 pre-commitcommit-msg, 如果没有则手动创建

pre-commit文件内容

#!/bin/sh
. "$(dirname "$0")/_/husky.sh"npx lint-staged

commit-msg文件内容

#!/bin/sh
. "$(dirname "$0")/_/husky.sh"npx --no-install commitlint --edit "$1"

接下来在 package.json 中添加

  "husky": {"hooks": {"commit-msg": "commitlint -E HUSKY_GIT_PARAMS,","pre-commit": "lint-staged"}}

然后创建一个配置文件 .lintstagedrc.json

{"*.{js,jsx,vue,ts,tsx}": ["prettier --write .", "eslint  --fix"],"*.md": ["prettier --write"]
}

接下来就可以测试了, 只有当你 输入 git commit -m "test: XXX"这样的信息时才允许提交

> git add .
> git commit -m "sss"
> git commit -m "test: XXX

什么是 husky?

husky 继承了 Git 下所有的钩子,在触发钩子的时候,husky 可以阻止不合法的 commit,push 等等。注意使用 husky 之前,必须先将代码放到 git 仓库中,否则本地没有.git 文件,就没有地方去继承钩子了。

在 package.json 文件通过字段直接添加 git 钩子

{"husky": {"hooks": {//commitlint检测"commit-msg": "commitlint -E HUSKY_GIT_PARAMS,",//js、css检测,这两个检测需要自己配置,pre-commit会优先于commit-msg执行"pre-commit": "npm run stylelint && npm run eslint"}}
}

什么是 conventional-changelog ?

conventional-changelog 是一款可以根据项目的 commitmetadata 信息自动生成 changelogsrelease notes的系列工具,并且在辅助包 standard-version 工具的情况下,可以自动帮你完成生成 version、打 tag, 生成 CHANGELOG 等系列过程。

  • conventional-changelog 生态主要模块
  • conventional-changelog-cli - conventional-changelog 核心命令行工具
  • standard-changelog - 针对 angular commit 格式的命令行工具
  • conventional-github-releaser - 利用 git metadata 针对 Github 的发布工具
  • conventional-commits-detector - commit message 规范引用检测
  • commitizen - 针对开发者简单的 commit 规范
  • commitlint - commit Lint 工具

为了方便使用,在 package.json 文件添加命令

{"scripts": {"changelog": "conventional-changelog -p angular -i CHANGELOG.md -s -r 0"}
}

以后,直接运行下面的命令即可生成提交日志

> npm run changelog

git 标识

  • feat:新功能(feature)
  • fix:修补 bug
  • docs:文档(documentation)
  • style: 格式(不影响代码运行的变动)
  • refactor:重构(即不是新增功能,也不是修改 bug 的代码变动)
  • perf: 性能提升(提高性能的代码改动)
  • test:测试
  • build:构建过程或辅助工具的变动(webpack 等)
  • ci:更改 CI 配置文件和脚本
  • chore:不修改 src 或测试文件的其他更改
  • revert:撤退之前的 commit

常见问题

  1. windows 用户需要使用 npm 包管理器安装,不然 git hooks 会失效

参考资料

vite2+vue3+Ts
vite 中文网

Git Commit 提交规范相关推荐

  1. git commit提交规范

    Commit message 都包括三个部分:header,body 和 footer,其中 header 有一个特殊的格式,包括了 type.scope.subject. <type>( ...

  2. git-cz 一款git commit 统一规范的工具

    git-cz 一款git commit 统一规范的工具 介绍:git commit 就是你在修改代码后写一个备注,如果安装了commitizen后,你可以使用git cz取代git commit,每次 ...

  3. Git commit hook 规范标准配置

    Git每次提交代码都需要写commit message,否则就不允许提交.一般来说,commit message应该清晰明了,说明本次提交的目的,具体做了什么操作--但是在日常开发中,大家的commi ...

  4. git commit --amend修改git commit提交的message

    当git commit -m "message"提交之后,在push之前,发现git commit中的message有误,想把提交的message改过来,有什么办法? 首先输入gi ...

  5. git commit 提交出错,工作区代码被回退到最开始内容

    git commit 提交出错,工作区代码被回退到最开始内容 1.环境: 我的环境是ant design pro,今天在提交代码的时候,发现了一个很诡异的现象,那就是,当我git add .后,执行g ...

  6. Commit提交规范

    Commit提交规范 整体上根据 angular 规范提交 commit,细微处做了修改. <type>(<scope>): <subject> <BLANK ...

  7. husky配置 => git 日志提交规范限制, eslint检查

    1. husky 是什么 husky 是一个 Git Hook 工具.本文主要实现提交前 eslint 校验和 commit 信息的规范校验 简单说就是,当我们运行 git commmit -m 'x ...

  8. git commit 提交的时候报错husky > pre-commit hook failed (add --no-verify to bypass)(解决办法)

    问题原因: 问题原因:pre-commit钩子惹的祸当你在终端输入git commit -m"XXX",提交代码的时候,pre-commit(客户端)钩子,它会在Git键入提交信息 ...

  9. git commit 提交的时候报错husky > pre-commit hook failed 或者‘lint-staged‘ 不是内部或外部命令,也不是可运行的程序(解决办法)

    这个问题是因为当你在终端输入git commit -m "XXX",提交代码的时候,pre-commit(客户端)钩子,它会在Git键入提交信息前运行做代码风格检查.如果代码不符合 ...

最新文章

  1. css案例学习之div ul li a 实现导航效果
  2. 互联网协议 — TCP — 拥塞控制(网络质量保障)
  3. Python基础教程:嵌套函数、闭包
  4. Spring IOC 组件概述
  5. C# Winform中DataGridView的DataGridViewCheckBoxColumn CheckBox选中判断
  6. 三种excel 多条件计数方法
  7. 左右伸缩_SSFB梳齿型桥梁伸缩缝安装步骤及使用特性
  8. mysql导出csv格式去除字段中的\n\r
  9. 诗与远方:无题(五十五)- 曾经写给妹子的一首诗
  10. Numpy——数组分割
  11. vue学习-MVVM的实现原理
  12. Java使用冒泡排序对数据进行排序,带注释
  13. 《软件设计精要与模式》书评
  14. 测试UDP端口是否通
  15. python基础-读写txt文件
  16. Photoshop中的抠图工具
  17. QStyle之PenStyle的CustomDashLine使用
  18. 用HTML+CSS做一个简单好看的环保网页
  19. 如何查看电脑WIFI密码
  20. 《屌丝:庶民的文化胜利》的精彩评论

热门文章

  1. 帆软填报报表实现日期自动生成总结
  2. centos安装TDengine
  3. 农产品销售|助农惠农|基于Springboot实现农产品销售管理系统
  4. 脉脉有钱不任性,强势角逐职场社交
  5. 面试必需要明白的 Redis 分布式锁实现原理!
  6. 计算机毕业设计Java纺织代加工车间生产状态监测系统(源码+系统+mysql数据库+lW文档)
  7. 公众演讲如何脱稿演讲
  8. podman容器的开机自启
  9. 【报错】overleaf不能成功编译中文(在线latex)
  10. 51nod 1836战忽局的手段(期望+矩阵快速幂)