4

Is it possible to create a submodule that does not link to a repository directly, but to a directory inside it?

For example, let fw.git be a framework repository, with these dirs:

|fw.git
\---|test
    |code
    |tools

I'd like to submodule the framework code, just the code directory, not other directories.

Mikulas Dite
  • 7,790
  • 9
  • 59
  • 99

1 Answers1

2

No, it's not possible. Linus intentionally made git not work like that.

Mikulas Dite
  • 7,790
  • 9
  • 59
  • 99