1 2 3 4 5 6
#!/bin/sh # git-push-all: Iterate through all git remotes, and push to each of them. for rem in $(git remote) ; do git push "$rem" done