Reputation: 6531
I have a couple very similar looking folders on my machine that correspond to different repositories stored on github.
How can I check the git address that a specific folder corresponds to?
Upvotes: 0
Views: 1401
Reputation: 534
You can run git remote -v
inside the folder in order to list the remotes registered with the local repository. The 'origin' remote is the one set up by 'git clone', so that's the one you' re looking for.
Upvotes: 1