I have a directory ./a/b/
. Only b
is a git repo. Now I've decided that the git repo tree should start from a
, and include (if possible) all information about b
repo.
I've tried to just git init
from a
, and commit. But when a
is cloned, it has an empty b
. (which is interesting, because as far as I know git usually ignores empty directories)
It it possible to do this somehow?