kie-platform/configuration/kie-wb/post-commit
2018-10-21 17:46:35 +02:00

15 lines
No EOL
359 B
Bash

#!/bin/sh
# This hook is used to push a mirrored version of all committed files to your remote repo after they are commited
# Replace this variable with your remote repo name
REPO=git@gitlab.pymma-software.com:onisep/onisep-drools-repo.git
echo
echo "==== Sending changes to $REPO repo ===="
echo
git push --mirror $REPO;
echo
echo "==== Donezo ===="
echo