Git command `remote`
Definition
Manage set of tracked repositories.
Basic usage
Check configured remote repositories
$ git remote
Check configured remote repositories with urls
$ git remote -v
Show informations about remote
$ git remote show <remote-name>
Add new remote repository
$ git remote add <shortname> <url>
Locally rename remote repository
$ git remote rename <old> <new>
Locally remove a remote repository
$ git remote remove <remote-name>