Create a git repository in some directory. Add all the files in that directory and commit them. Then create another git repository in a parent directory and add all files. Clone that repository elsewhere. Note that the files in the sub-repository are missing in the cloned repository. How can I get Git to add all files in the nested repository? Note that I don't want submodules - I want the files from the nested repository to be added as well.
|
|
Chances are that you do want something very much like submodules (but perhaps not literal submodules). For instance, it seems to be fairly common to have a large project that consists of some number N of sub-projects (N > 1), where, for good source and/or organizational reasons, each sub-project should have its own git repo. Submodules allow you to have one big "super-container" that simply calls out all the submodules:
Here each submodule is independent (as far as it knows / cares, anyway) and "super" just collects the three. The catch is that during development, you often (but not always) want, e.g., "whatever is latest on branch But git won't do that. We use a massive (and somewhat flaky) script to achieve something along these lines instead. (It also collects commits that span multiple submodules, since sometimes a change affects, e.g., both |
|||
|
|
|
You haven't clarified your question yet, so I'll give you a few answers. If you don't actually care about this subdirectory as a separate repository anymore, and just want to fold it into the parent repository, i.e. you don't want a nested repository at all, just copy the contents of the repository in. You could also simply remove the .git directory from what you already cloned in. If you do want a nested repository, handled appropriately, then you want a submodule - that's a repo within a repo, managed with the If you want to have it both ways, you could use |
|||||||||||
|