2

My repository structure is like this:

Main folder
|-- A
|    |-- some 
|    +-- files
|
+-- B
    |-- some
    |-- more
    +-- files

But when I pull it only A folder is there.

Haralan Dobrev
  • 7,617
  • 2
  • 48
  • 66
Rituraj ratan
  • 10,260
  • 8
  • 34
  • 55

1 Answers1

1

Try with:

git clone --recursive

It will download any Git submodules listed in .gitmodules.

Haralan Dobrev
  • 7,617
  • 2
  • 48
  • 66