15 lines
No EOL
359 B
Bash
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 |