If you want to push several specific branches (for example branch1 and branch2) you can use:
git push origin branch1 branch2
In Git >= 2.4 this operation can be done atomically (i.e. if it fails to push any of the branches specified nothing will be pushed):
git push --atomic origin branch1 branch2