Problem
the '.husky/pre-commit' hook was ignored because it's not set as executable.
Why
it's probably a problem that wasn't created taking into account the file permissions of Linux at the time of init on Windows.
(Refernce)
Solve
chmod ug+x .husky/*
chmod ug+x .git/hooks/*
Top comments (0)