Change hook to include remote else we loose it in git log

This commit is contained in:
flyingscorpio@arch-desktop 2020-09-03 17:21:13 +02:00
parent 1397a85250
commit 95e423da58

View file

@ -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