Mac上使用Git提交代码提示:
hint: The '.git/hooks/prepare-commit-msg' hook was ignored because it's not set as executable.
hint: You can disable this warning with `git config advice.ignoredHook false`.
hint: The '.git/hooks/commit-msg' hook was ignored because it's not set as executable.
hint: You can disable this warning with `git config advice.ignoredHook false`.
hint: The '.git/hooks/pre-push' hook was ignored because it's not set as executable.
hint: You can disable this warning with `git config advice.ignoredHook false`.
解决方案:
执行:
chmod 777 .git/hooks/commit-msg
chmod 777 .git/hooks/pre-push
chmod 777 .git/hooks/prepare-commit-msg
chmod 777
命令可以确保文件或目录对所有用户开放;
也可以使用 chmod a+x 增加权限 chmod a-x 取消权限
chmod a+x .git/hooks/commit-msg