Updated config to point to hooks directory in this repo, which

contains the hook scripts
This commit is contained in:
andrewc
2024-01-15 09:50:31 +10:00
parent 2c582c23fc
commit c8c18d6c49
2 changed files with 2 additions and 0 deletions

6
hooks/pre-push Executable file
View File

@@ -0,0 +1,6 @@
#!/bin/sh
kimelon unlock all
command -v git-lfs >/dev/null 2>&1 || { echo >&2 "\nThis repository is configured for Git LFS but 'git-lfs' was not found on your path. If you no longer wish to use Git LFS, remove this hook by deleting '.git/hooks/pre-push'.\n"; exit 2; }
git lfs pre-push "$@"