Edit your ~/.gitconfig file and add the following:
~/.gitconfig
[alias] pushall = !git remote | xargs -L1 -P0 git push --all --follow-tags
To use it in a Git repository, git pushall after committing changes to your local copy.
git pushall