Thomas Adam wrote:
Hello all,
Now: I want to make mysubmoduleB a submodule which I can publish to
the shared repository and when others pull, to see that submodule and
be able to treat it as such.
But I can't see how to do that. Can someone help?
Many thanks in advance.
-- Thomas Adam
git submodule add <URL where this will exist> ./mysubmoduleB
will recognize that mysubmoduleB is already a valid git repo and add it as is at
the current location to the superproject.
Mark