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

我们有一个多个git仓库。 我怎样才能一次克隆多个存储库?


是的,可能的,但不在同一个目录中。

您必须将每个存储git clone到本地磁盘上自己的目录中。

请参阅如何将git存储库克隆到特定文件夹中? 一个选项:

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

这不会与git remote混淆,它允许你声明几个可以从中获取git remote (然后在你当前的git repo中合并)


对的,这是可能的。 只要在两个不同的目录下用两个不同的存储库进行git clone

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

上一篇: How can i clone more than one git repository. If its possible?

下一篇: Testing/previewing Github branches on a dev server