add git-push-all script

This commit is contained in:
Romain Paquet 2026-04-07 19:35:03 +00:00
parent 002f72d658
commit ec04d8a808

7
home/bin/git-push-all Executable file
View file

@ -0,0 +1,7 @@
#!/usr/bin/env sh
set -eu
for remote in $(git remote); do
git push "$remote" $@
done