Adding hook to repo

This commit is contained in:
flyingscorpio@arch-desktop 2020-09-03 17:04:26 +02:00
parent 52582530b2
commit 1397a85250
2 changed files with 17 additions and 0 deletions

4
git_hooks/pre-push Executable file
View file

@ -0,0 +1,4 @@
#!/bin/sh
echo "Pushing to Gitlab..."
git push git@gitlab.com:flyingscorpio/SetupCockpit.git master

13
symlink_git_hooks.sh Executable file
View file

@ -0,0 +1,13 @@
#!/bin/sh
HOOK_DIR=$(git rev-parse --show-toplevel)/.git/hooks
for hook in "$(git rev-parse --show-toplevel)"/git_hooks/*; do
# If the hook already exists, is executable, and is not a symlink
if [ ! -h "$HOOK_DIR/$hook" ] && [ -x "$HOOK_DIR/$hook" ]; then
mv "$HOOK_DIR/$hook" "$HOOK_DIR/$hook.local"
fi
# create the symlink, overwriting the file if it exists
# probably the only way this would happen is if using an old version of git,
# -- back when the sample hooks were not executable, instead of being named ____.sample
ln -s -f "$hook" "$HOOK_DIR/"
done