vote up 2 vote down star

When I do a git pull my repository automatically pulls from the original git repo that I cloned from. How can I get the URL of that git repository from the child repository?

flag

64% accept rate

2 Answers

vote up 2 vote down check

Also, git remote -v will show the urls of all your remotes.

link|flag
vote up 5 vote down

Use git remote:

git remote show

This will list all the remotes. Then, for example:

git remote show origin
link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.