How to clone a git repo from one remote to another
Co-Founder and CTO of Medstro
git clone --mirror old-remote-url
cd repo.git
git push --mirror new-remote-url
Co-Founder and CTO of Medstro
git clone --mirror old-remote-url
cd repo.git
git push --mirror new-remote-url
Co-Founder and CTO of Medstro