How to change Git remote origin URLs, to push all branches and tags from your repo to GitLab or GitHub.
With the commands below, you can change your source control provider easily:
git remote set-url origin [email protected]:your-repo-name.git
git remote -v
git push -u origin --all
git push -u origin --tags
Don't forget to change your-repo-name
!