Manage set of tracked repositories ("remotes"). More information: https://git-scm.com/docs/git-remote.
git remote -v
git remote add {{remote_name}} {{remote_url}}
--add
to keep the existing URL):git remote set-url {{remote_name}} {{new_url}}
git remote remove {{remote_name}}
git remote rename {{old_name}} {{new_name}}