其他分享
首页 > 其他分享> > 规范git提交

规范git提交

作者:互联网

提交规范工具:https://github.com/commitizen/cz-cli

git hooks husky:https://github.com/typicode/husky

一.commitizen

1.安装git提交规范工具(在项目中安装)

npm install --save-dev commitizen

npx commitizen init cz-conventional-changelog --save-dev --save-exact

2.在package.json中配置npm脚本

 "scripts": {
    "cm": "cz"
  }

3.使用

git add .
npm run cm //或者 npx cz

4.效果

5.说明

描述
feat新增一个功能
fix        修复一个bug
docs文档变更
style代码格式(不影响功能)
refactor代码重构
perf改善性能
test测试
build构建或新增依赖
ci更改持续集成软件的配置文件和package中的scripts命令,例如scopes: Travis, Circle等
chore变更构建流程或辅助工具
revert代码回退

二.husky

1.安装husky

npx husky-init && npm install       # npm
npx husky-init && yarn              # Yarn 1
yarn dlx husky-init --yarn2 && yarn # Yarn 2

2.添加eslint修复命令

在项目根目录下的.husky/pre-commit中添加 npm run lint --fix

#!/bin/sh
. "$(dirname "$0")/_/husky.sh"

npm run lint --fix

标签:npm,commitizen,git,--,规范,cz,init,提交,husky
来源: https://blog.csdn.net/weixin_42454941/article/details/123206124