Add rest for kie-wb and refactoring

This commit is contained in:
Nicolas Héron 2018-10-21 17:46:35 +02:00
commit 97affee12c
18 changed files with 602 additions and 14 deletions

View file

@ -0,0 +1,15 @@
#!/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