Is there a way to get git push to push all branches which are already set to be tracking?
For example, suppose I have three branches which track remotely: dev, staging, and production. I make commits and merges and now wish to push all three. Is there a single command to do this?
(Note: not the same as With GitHub how do I push all branches when adding an existing repo? and git push --all won't work, as it will push all local branches, not just tracking ones.)