Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
是否可以使用 Github for Windows 多次克隆同一个存储库?我问的原因是我想多次克隆 Laravel 框架,对于我使用它的每个项目一次。
有可能,而且很简单
在 git bash 中:
git clone <repo> <directory> git clone <repo> <directory_2> ............................. git clone <repo> <directory_N-1> git clone <repo> <directory_N>
Repo 是您的存储库 URL,所有这些目录 [N] 都是您想要的目录名称
另外,为什么不将已经克隆的 repo 复制到另一个目录呢?