Reputation: 33
I want to see all my remote repositories in Github with cmd. How can I do this?
Upvotes: 0
Views: 97
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