You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

20 lines
690 B
Bash

#!/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/$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 set-url --add --push origin https://basedwa.re/drummfish/$1.git
git remote set-url --add --push origin https://gitea.slowb.ro/drummyfish/$1.git
git remote -v
git push --set-upstream origin master