Gytautė
Gytautė

Reputation: 33

How to see all remote repositories which were currently earlier configured in Github?

I want to see all my remote repositories in Github with cmd. How can I do this?

Upvotes: 0

Views: 97

Answers (1)

Steve
Steve

Reputation: 46

Have you tried:

git remote

This will show the names of the remotes accessible from your repo. If you want to see what the names resolve to you can add the -v option for verbose output:

git remote -v

Upvotes: 3

Related Questions