This commit is contained in:
Miloslav Ciz 2024-01-07 03:16:15 +01:00
parent 0ea738f524
commit 181057e0e3
6 changed files with 95 additions and 18 deletions

17
add_git_remotes.sh Executable file
View file

@ -0,0 +1,17 @@
#!/bin/bash
# Adds mirror remotes to a git repot, expects one parameter: the repo name.
echo $1
git remote | xargs -n1 git remote remove # delete all remotes
git remote add origin https://git.coom.tech/drummyfish/less_retarded_wiki.git/$1.git
git remote set-url --add --push origin https://git.coom.tech/drummyfish/$1.git
git remote set-url --add --push origin ssh://tastyfish@192.168.0.106:/home/tastyfish/git/$1
git remote set-url --add --push origin https://git.thisisjoes.site/drummyfish/$1.git
git remote -v
git push --set-upstream origin master