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?
views:
127answers:
2
+5
A:
Use git remote
:
git remote show
This will list all the remotes. Then, for example:
git remote show origin
Greg Hewgill
2009-10-25 22:54:52