kie-platform/configuration/kie-wb/post-commit

15 lines
359 B
Text
Raw Permalink Normal View History

2018-10-21 17:46:35 +02:00
#!/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