type may not be empty [type-empty]

时间:2024-03-01 12:37:39

Git提交失败原因分析

原因是使用了规范commit信息的工具,你的提交信息不符合规范,所以被拒绝了

commit规范工具

  • commitlint
  • husky

我这个项目使用husky,提交规范比较严格。

解决方式一:

修改提交信息, 使其符合规范

git commit -m "feat: 新功能"

使用Git Gui的使用以下格式写提交说明: fix: <can not reload>

fix冒号后面要有空格,实在不行,把我这个说明复制过去试试。

解决方式二:

直接卸载工具

npm uninstall husky