2023-05-17 08:13:45 -06:00
|
|
|
{ tea, gh, _1password, hut }:
|
2023-01-10 18:35:29 -07:00
|
|
|
|
|
|
|
let
|
|
|
|
teaBin = "${tea}/bin/tea";
|
|
|
|
ghBin = "${gh}/bin/gh";
|
2023-05-17 08:13:45 -06:00
|
|
|
htBin = "${hut}/bin/hut";
|
2023-01-10 18:35:29 -07:00
|
|
|
|
|
|
|
in ''
|
|
|
|
#!/usr/bin/env sh
|
|
|
|
|
|
|
|
set -eu
|
|
|
|
|
2023-05-17 08:13:45 -06:00
|
|
|
source ~/.config/op/plugins.sh
|
|
|
|
|
2023-01-10 18:35:29 -07:00
|
|
|
proj="$(basename $PWD)"
|
|
|
|
|
|
|
|
for login in $(${teaBin} logins list -o simple | awk '{print $1}'); do
|
|
|
|
tea logins default "$login"
|
|
|
|
tea repos create -name "$proj" || echo "error creating '$proj' on '$login'"
|
|
|
|
done
|
|
|
|
|
|
|
|
# ${ghBin}
|
2023-05-17 08:13:45 -06:00
|
|
|
gh repo create --public "$proj" || echo "error creating '$proj' on 'github'"
|
|
|
|
|
|
|
|
# ${htBin}
|
|
|
|
${htBin} git create "$proj" || echo "error creating '$proj' on 'sr.ht'"
|
2023-01-10 18:35:29 -07:00
|
|
|
|
2023-05-17 18:26:02 -06:00
|
|
|
git config --unset-all remote.origin.url
|
|
|
|
for repo in "git@github.com:qbit/%s.git" "ssh://gitea@git.tapenet.org:2222/qbit/%s.git" "git@codeberg.org:qbit/%s.git" "git@git.sr.ht:~qbit/%s"; do
|
|
|
|
echo "Adding remote: $(printf $repo $proj)"
|
|
|
|
git config --add remote.origin.url "$(printf $repo $proj)"
|
|
|
|
done
|
|
|
|
|
2023-01-10 18:35:29 -07:00
|
|
|
''
|