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 the type of the remote (push or pull):

$ git remote -v
premiumPro    <https://github.com/user/CatClickerPro.git> (fetch)
premiumPro    <https://github.com/user/CatClickerPro.git> (push)
premium    <https://github.com/user/CatClicker.git> (fetch)
premium    <https://github.com/user/CatClicker.git> (push)
origin    <https://github.com/ud/starter.git> (fetch)
origin    <https://github.com/ud/starter.git> (push)