Git hooks live into .git/hooks folder in every git repo.
The name of each one tells us when the git hook it's gonna be executed, and the .sample extension in each one prevent its execution.
When we are going to execute a script in some part of git's lifecycle, we need to
- Find the file of the part of lifecycle that we need to override