setup-cockpit/git_hooks/pre-push

11 lines
203 B
Bash
Executable file

#!/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 gitlab master
exit 0