git pre-commit hook bypass email

我的梦境 提交于 2020-03-06 03:06:27

问题


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

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!