如何使用 Git 将存储库导入另一个存储库

How to import a repository into another with Git

我想将外部存储库的源导入到我的存储库中。 例如从这个项目: https://github.com/SpongePowered/Sponge

其中 "Mixin" 是导入的。我想做同样的事情,但我不知道怎么做。

那些叫做submodules。当您想在项目中使用其他项目而不单独导入项目代码时,通常会使用它们。

您只需在项目中添加 submodule 即可为您的项目做到这一点。

git submodule add https://github.com/SpongePowered/Sponge

Read here for more info