This commit is contained in:
L3D 2019-12-22 11:59:04 +01:00
parent 61af852fbd
commit a364def642
Signed by: l3d
GPG key ID: CD08445BFF4313D1

View file

@ -47,3 +47,17 @@ pull:
git remote add gitea gitea@gitea.see-base.de:C3WOC/c3woc-webseite.git
git pull gitea master
fi
push:
if git config remote.gitea.url > /dev/null; then
git push gitea master
else
git remote add gitea gitea@gitea.see-base.de:C3WOC/c3woc-webseite.git
git push gitea master
fi
if git config remote.github.url > /dev/null; then
git push github master
else
git remote add github git@github.com:c3woc/c3woc-website.git
git push github master
fi