xin/bins/rpr.nix

36 lines
968 B
Nix
Raw Normal View History

2023-07-11 09:12:50 -06:00
{
tea,
gh,
hut,
}: let
2023-01-10 18:35:29 -07:00
teaBin = "${tea}/bin/tea";
ghBin = "${gh}/bin/gh";
htBin = "${hut}/bin/hut";
2023-01-10 18:35:29 -07:00
in ''
#!/usr/bin/env sh
set -eu
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}
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
git config --unset-all remote.origin.url || echo "no remote defined..."
2023-05-31 09:39:38 -06:00
for repo in "git@github.com:qbit/%s.git" "git@gitle.humpback-trout.ts.net:%s" "ssh://gitea@git.tapenet.org:2222/qbit/%s.git" "git@codeberg.org:qbit/%s.git" "git@git.sr.ht:~qbit/%s"; do
2023-05-17 18:26:02 -06:00
echo "Adding remote: $(printf $repo $proj)"
git config --add remote.origin.url "$(printf $repo $proj)"
done
2023-01-10 18:35:29 -07:00
''