dotfiles/.local/bin/scripts/pre-commit-install

7 lines
252 B
Bash
Executable File

#!/bin/sh
# Install pre-commit, ignoring globally set core.hooksPath
git config --unset core.hooksPath
GIT_CONFIG_GLOBAL=/dev/null pre-commit install
GIT_CONFIG_GLOBAL=/dev/null pre-commit install -t pre-push
git config --add core.hooksPath .git/hooks