How can I add a specific folder from a git repo as a git submodule?

后端 未结 3 960
庸人自扰
庸人自扰 2020-12-24 01:00

I have a git repo and I want to add a submodule to it. Problem is, the submodule exists as a folder inside another repo. Can I add only that folder as a submodule?

3条回答
  •  天涯浪人
    2020-12-24 01:59

    I ended up doing this:

    1. Create a submodules directory.
    2. Add the submodule in this directory.
    3. Create a symlink to the specific directory inside the submodule.

    This way you have default Git submodule behaviour and in your project you only use a subset of the whole submodule.

提交回复
热议问题