|
|
|
|
|
by andOlga
6 days ago
|
|
git config --global core.hooksPath /dev/null
Then, in repos you want to turn it on: git config core.hooksPath "$PWD/.git/hooks"
This also works on Windows (and presumably other operating systems where /dev/null does not exist) as it seems to be handled as a special-case value. |
|