git pre-commit hook failed 解决办法

2019-09-08 21:44:15


不是自己的项目,也不敢随便删除  于是 git commit -m['新加接口'] -n

一、 git commit -m 'xxx' 出现问题


今天在上传项目的时候在commit阶段遇到一个问题,无论是在Sourcetree上传还是用命令git commit -m 'xxx'都报了一下错误:


husky > npm run -s precommit (node v8.12.0)

husky > pre-commit hook failed (add --no-verify to bypass)

后面查了很多方法都没有很好解决。但是大概能总结问题:


pre-commit钩子惹的祸


当你在终端输入git commit -m "xxx",提交代码的时候,

pre-commit(客户端)钩子,它会在Git键入提交信息前运行做代码风格检查。

如果代码不符合相应规则,则报错。


虽然会提示add --no-verify,但是我输入git commit -m 'xxx' --no-verify绕过验证,强制提交。 好像还是没有上传成功.如果你也一样


请看下面


二、'弱鸡'的解决方案


为了省点事,我并没有花功夫去查找代码哪里不符合规范.我是暴力地把pre-commit钩子给删除了!


具体步骤:


进入项目的.git文件夹(文件夹默认隐藏,可先设置显示或者命令ls查找)

再进入hooks文件夹

删除pre-commit文件

重新git commit -m 'xxx' git push即可。SourceTree也可以正常推送


总结一句话: 删除.git的提交规则文件: rm -rf ./git/hooks/pre-commit


  • 2017-11-10 00:06:15

    CORS: credentials mode is 'include'

    XMLHttpRequest cannot load http://localhost/Foo.API/token. The value of the 'Access-Control-Allow-Origin' header in the response must not be the wildcard '*' when the request's credentials mode is 'include'. Origin 'http://localhost:5000' is therefore not allowed access. The credentials mode of requests initiated by the XMLHttpRequest is controlled by the withCredentials attribute.

  • 2017-11-19 00:17:51

    Java如何获取Date的“昨天”与“明天”示例代码

    最近在做项目的时候用到Date和Calendar比较多,而且用到的方式也比较全,突然想到一个问题,Java如何获取Date的"昨天"与"明天",也就是前一天和后一天呢?思考后写出了方法,想着万一以后用到,就总结出来,也方便有需要的朋友们参考借鉴,下面来一起看看吧。