我正在尝试 git 提交文件——无法找到 gruntfile

I'm trying to git commit files -- unable to find gruntfile

我正在尝试提交对我的 git 存储库中的两个暂存文件的更改。当我执行 git commit -m"comment" 命令时,我收到消息 Fatal error: "Unable to find Gruntfile."

这两个文件与使用 grunt 无关。

问题:如何让我的 git 停止检查 grunt?

几乎可以肯定你有预提交挂钩。

git commit --no-verify

允许避免一次。或者您可以将其从 .git/hooks.

中完全删除