I have cloned my repo and would like to push all my remote branches (origin/*) to a new remote which I configured. I have tried:
git push anotherRemote --all
but it only pushes the ones that I made a local copy from. When I type:
git branch -r
I see all the branches located on my other remote (which I have not created local copies of). How to I push those to my anotherRemote
?