Instead of doing:
git push origin --all && git push nodester --all && git push duostack --all
Is there a way to do that wit
git remote | xargs -L1 git push --all
Replace master
with the branch you want to push.
git remote | xargs -L1 -I R git push R master
git config --global alias.pushall '!git remote | xargs -L1 git push --all'
Running git pushall
will now push all branches to all remotes.