flocon/home/bin/git-push-all

7 lines
88 B
Bash
Executable file

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