To list all configured remote repositories, use git remote.
It shows the short name (aliases) of each remote handle that you have configured.
$ git remote
premium
premiumPro
origin
To show more detailed information, the --verbose or -v flag can be used. The output will include the URL and th...