一、安装commitizen
1 |
npm i -D commitizen |
二、安装适配器
1 |
npx commitizen init cz-conventional-changelog -D --save-exact |
三、在package.json中添加commit命令
1 2 3 |
"scripts": { "commit": "git-cz" } |
四、使用
1 2 |
git add . npm run commit |