How can I determine the URL that a local Git repository was originally cloned from?
I pulled a project from GitHub a few days ago. I've since discovered that there are several forks on GitHub, and I neglected to note which one I took originally. How can I determine which of those forks I pulled? JaredPar If you want only the remote URL, or referential integrity has been broken: git config --get remote.origin.url If you require full output or referential integrity is intact: git remote show origin When using git clone (from GitHub, or any source repository for that matter) the default name for the source of the clone is "origin". Using git remote show will display the