15 lines
359 B
Text
15 lines
359 B
Text
|
|
#!/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
|