diff --git a/home/bin/git-push-all b/home/bin/git-push-all new file mode 100755 index 0000000..806fb70 --- /dev/null +++ b/home/bin/git-push-all @@ -0,0 +1,7 @@ +#!/usr/bin/env sh + +set -eu + +for remote in $(git remote); do + git push "$remote" $@ +done