From 95e423da5867fe1eb16f40090a5ef11a5b12f34d Mon Sep 17 00:00:00 2001 From: "flyingscorpio@arch-desktop" Date: Thu, 3 Sep 2020 17:21:13 +0200 Subject: [PATCH] Change hook to include remote else we loose it in git log --- git_hooks/pre-push | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/git_hooks/pre-push b/git_hooks/pre-push index 6d94517..919fbb7 100755 --- a/git_hooks/pre-push +++ b/git_hooks/pre-push @@ -1,4 +1,11 @@ #!/bin/sh +remote="$1" +url="$2" + +if [ "$remote" = 'gitlab' ] || [ "$url" = 'git@gitlab.com:flyingscorpio/SetupCockpit.git' ]; then + exit 0 +fi echo "Pushing to Gitlab..." -git push git@gitlab.com:flyingscorpio/SetupCockpit.git master +git push gitlab master +exit 0