REF.: [1] Git - git-remote Documentation
REF.: [2] Git - Working with Remotes
git remote add <name> https://path-to/the-project.git
# Note: As a common naming convention "origin" is often used for
# the default remote repository; change this name when you
# add more remote repositories.
git remote set-url origin https://path-to/the-project.git
# Remember "origin" is just a name
$ git remote
origin
$ git remote -v
origin https://path-to/the-project.git (fetch)
origin https://path-to/the-project.git (push)
git remote rename <old_name> <new_name>
git remote remove <name>
git remote show origin
# "It lists the URL for the remote repository as well as the
# tracking branch information." [2]