0

When cloning submodules from a gitosis repo, I got all files except for the .git directory. .git directory is missing. Instead, I got a single .git file. I use git submodule init and git submodule update to clone submodules. How can I get .git directory?

1 Answers1

1

submodules have their .git directory inside the .git directory of the enclosing repo. the .git file points there.

mnagel
  • 6,729
  • 4
  • 31
  • 66