Because of its simplicity, we use remote repository placed on shared disk, accessing it using file system path (\\server\\share). Is is possible, in such case, to run hook s
Git hook is a script you can run before (pre-commit) or after (post-commit) a commit is made. There can be more than one of such a script.
They are placed in a specified folder. Any git repository has a .git/hooks folder with file(s) containing hook scripts.
You need to answer Do you have the event you are testing bind to a hook present in your's git repository?
Check also this on how git executes hooks in Windows:
Tips for using hooks:
Some more git hooks reading: