尝试提交时出现奇怪错误。 [主题空]

Strange error when attempting to commit. [subject-empty]

我在 CLI 中输入这个

git commit -m "Hello World!"

这是我收到的错误消息

husky > commit-msg (node v14.15.3)
⧗   input: Hello World!
✖   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 failed (add --no-verify to bypass)

这是什么意思?

我用“npm uninstall husky”解决了这个问题

要修复错误,请将您的提交消息(“Hello world”)更改为遵循 Conventional Commits format,例如到“壮举:你好世界”。

正如“获取帮助”消息 link(在您的错误消息中)所解释的,husky 调用 commitlint 来验证您的提交消息是否符合此格式。

我们应该总是RTFEM !

对我来说是 space。 已更改

`feat(pill):message here` 

`feat(pill): message here`

有一个名为 husky 的包,它为您的提交消息定义了特定的模板。如果不满足模板,就会出现奇怪的错误。

您可以尝试的另一个解决方案是

git commit --no-verify -m "Hello World!"

git commit -n -m "Hello World!"

参考资料

https://git-scm.com/book/en/v2/Customizing-Git-Git-Hooks#_committing_workflow_hooks