The short: is there a way to have a git repo push to and pull from a list of remote repos (rather than a single \"origin\")?
The long:
I added these aliases to my ~/.bashrc:
alias pushall='for i in `git remote`; do git push $i; done;' alias pullall='for i in `git remote`; do git pull $i; done;'