Hi people!
I have the following directories structure:
- g1/
- .git
- a
- b
- c/
- .git
- d
- e
As you can see, I have de repository "c" inside repository "g1". When I use the following command:
git clone g1 g2
I only get the following directories structure:
- g1/
- .git
- a
- b
- c/
The directory "c" remains empty. Any ideas?