From 1397a85250de98da2f0c03f30aae29d69c15398e Mon Sep 17 00:00:00 2001 From: "flyingscorpio@arch-desktop" Date: Thu, 3 Sep 2020 17:04:26 +0200 Subject: [PATCH] Adding hook to repo --- git_hooks/pre-push | 4 ++++ symlink_git_hooks.sh | 13 +++++++++++++ 2 files changed, 17 insertions(+) create mode 100755 git_hooks/pre-push create mode 100755 symlink_git_hooks.sh diff --git a/git_hooks/pre-push b/git_hooks/pre-push new file mode 100755 index 0000000..6d94517 --- /dev/null +++ b/git_hooks/pre-push @@ -0,0 +1,4 @@ +#!/bin/sh + +echo "Pushing to Gitlab..." +git push git@gitlab.com:flyingscorpio/SetupCockpit.git master diff --git a/symlink_git_hooks.sh b/symlink_git_hooks.sh new file mode 100755 index 0000000..27c10fb --- /dev/null +++ b/symlink_git_hooks.sh @@ -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