问题
I have a pre-commit hook that runs PHP Codesniffer on all files in the staging area. However, sometimes developers bypass this hook by adding --no-verify option to the git commit command. Is there a way I can send an email each time a developer bypasses the hook?
回答1:
Too long for a comment, but probably not a complete answer.
Whooph... In the DVCS world everything that happens in a private repo is a private business. You as a team repository administrator can propose them some facilities to enhance and simplify their job, but you shouldn't overcarry.
You, however, can and actually should put some automatic sanity checks on receiving their commits on the team repository side. Likely pre-receive
hook is a better place for obligatory checks.
Alternatively, and indeed it's recommended for any "valuable" project, you could set up a more complex system for code review (our team uses gerrit but there're plenty of them including those written in PHP). Thus, your team members will familiarize themselves with other members works, suggest improvements and so on, while robots will perform routine tasks, like checking code-style, running unit- and integration tests and so on.
来源:https://stackoverflow.com/questions/37111893/git-pre-commit-hook-bypass-email