若使用IDE提交Git出现以下错误:
husky???
则是ES6在提交校验过程中出现了问题,强制提交方式为:
命令行:
git commit --no-verify
IDEA:
在提交时取消勾选Run Git hooks
VScode:
删除.git文件夹下hooks文件夹内的文件
即可成功提交代码。