How can i move repo into different origin
Push only master
git push --set-upstream [email protected]:username/new-repo.git master
Push all branches
git push --all --set-upstream [email protected]:username/new-repo.git
You can also add the --tags
flag to push your repo tags.