Y
Hacker News
new
|
ask
|
show
|
jobs
by
sph
9 days ago
Ok, how do I disable git hooks unless it’s in a manually blessed directory?
1 comments
andOlga
9 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.
link
sph
9 days ago
I would have liked for git to ask me first (like direnv does), rather than disabling them altogether, but this is good enough for now, so thanks.
link