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:
Here is my example with bash script inside .gitconfig alias section
.gitconfig
[alias] pushall = "!f(){ for i in `git remote`; do git push $i; done; };f"