How can i clone more than one git repository. If its possible?

we have an multiple git repository. how can i clone multiple repository at a time?


Yes, possible, but not in the same directory.

You would have to git clone each repository in its own directory on your local disk.

See How do you clone a git repository into a specific folder?; one option:

git clone git@github.com:whatever folder-name

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)


Yes, it is possible. Just do git clone in two different directories with two different repositories.

链接地址: http://www.djcxy.com/p/90492.html

上一篇: 我如何获取远程分支?

下一篇: 我如何克隆多个git存储库。 如果它是可能的?