Git Push All Remotes
Unfortunately, there is no magic. Just loop over all git remotes in your local repo and push to them.
git remote | xargs git push --all
Posted on February 24, 2025 | #bash
Unfortunately, there is no magic. Just loop over all git remotes in your local repo and push to them.
git remote | xargs git push --all