we have an multiple git repository. how can i clone multiple repository at a time?
Share
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.
Yes, possible, but not in the same directory.
You would have to
git cloneeach repository in its own directory on your local disk.See How do you clone a git repository into a specific folder?; one option:
This is not to be mixed up with
git remote, which allows you to declare several remotes from which you can git fetch (and then merge in your current git repo)