Git
hint: The '.husky/pre-commit' hook was ignored because it's not set as executable. 해결하기
Kir93
2022. 10. 29. 18:15
728x90
반응형
2021.11.10 - [Git] - husky + lint-staged를 활용하여 git hook걸기
이전 글을 통해 husky를 설정해 사용하던 중 새로운 pc를 사용할 때 husky가 동작하지 않는 문제가 발생했다.
그리고 아래와 같은 hint가 제공되었다.
hint: The '.husky/pre-commit' hook was ignored because it's not set as executable.
hint: You can disable this warning with `git config advice.ignoredHook false`.
이는 .husky/pre-commit의 실행 권한이 없어서 발생하는 문제로 무척 간단하게 해결할 수 있다.
.husky 폴더가 위치한 곳에서 Terminal을 열고 아래의 내용을 실행하면 된다.
chmod +x .husky/pre-commit
반응형