Pour tout problème contactez-nous par mail : support@froggit.fr | La FAQ :grey_question: | Rejoignez-nous sur le Chat :speech_balloon:

Skip to content
Snippets Groups Projects
mirror.sh 182 B
#!/usr/bin/env bash

REPO_PATH="${PROJECT_HOME}/code-server/"

cd "${REPO_PATH}" && git pull origin main || :
git push github main
git push pgitlab main
git push froggit main
exit 0