mirror of
https://gitea.invidious.io/iv-org/shard-spectator.git
synced 2024-08-15 00:53:35 +00:00
12 lines
296 B
Bash
12 lines
296 B
Bash
|
#!/usr/bin/env bash
|
||
|
set -ex
|
||
|
|
||
|
# Mirrors the contents of the GitLab wiki to GitHub.
|
||
|
git clone git@gitlab.com:arctic-fox/spectator.wiki.git
|
||
|
pushd spectator.wiki
|
||
|
git remote add github git@github.com:icy-arctic-fox/spectator.wiki.git
|
||
|
git fetch github
|
||
|
git push github master
|
||
|
popd
|
||
|
rm -rf spectator.wiki
|