I use the ‘git clone’ to clone a repository from an URL to a local directory and now I forget the URL of that repository that I clone from?
Thank you.
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
To list all your remotes:
git remote showThen just pick the one you want (I assume it’s
origin):git remote show originThis also shows the remote branches and which branches are being tracked.