add files

This commit is contained in:
2024-11-29 19:21:48 -05:00
commit 41065242f6
5 changed files with 88 additions and 0 deletions

8
scripts/hooks/pre-commit Normal file
View File

@ -0,0 +1,8 @@
#!/bin/bash
# List of files to ignore
ignore_files=("envfile") #("file1" "file2")
for file in "${ignore_files[@]}"; do
git update-index --skip-worktree $file
done