#!/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