I want for each branch do git push and it will push to my 2 remotes (each branch has different remotes).
I did try this for each branch:
git remote set-url --add --push all repo1
git remote set-url --add --push all repo2
git branch --set-upstream-to=all/master
This should work, but I have problem with proxy. repo1 is in my GitLab repo in intranet and does not use proxy, but repo2 is in Azure and needs proxy. Therefore the git push fails.
How to get this working with different proxies for urls in the same remote? Or maybe some other ideas how to tackle this requirement?