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