git提交时报错:husky-commit-msg hook exited with code 1 (error)

​问题描述:

git commit 时控制台报错:

✖   subject may not be empty [subject-empty]type may not be empty [type-empty]
✖   found 2 problems, 0 warnings
ⓘ   Get help: https://github.com/conventional-changelog/commitlint/#what-is-commitlint
husky - commit-msg hook exited with code 1 (error)

在这里插入图片描述
由于项目使用了husky,在提交前对代码规范进行了校验,导致报错
这种情况下无法直接push o(╥﹏╥)o

​ 解决方案:

commit 时加上提交信息:“fix: xxxxx”,比如:

git commit -m "fix: 初始化项目"

提交后就可以顺利push了 O(∩_∩)O

猜你喜欢

转载自blog.csdn.net/qq_45397526/article/details/126309405