问题描述:
git commit 时控制台报错:
✖ subject may not be empty [subject-empty]
✖ typemay 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
本文转载自: https://blog.csdn.net/qq_45397526/article/details/126309405
版权归原作者 不会写代码的小周 所有, 如有侵权,请联系我们删除。
版权归原作者 不会写代码的小周 所有, 如有侵权,请联系我们删除。