I have a Git repository in a folder called XX, and I have a second Git repository called YY.
I want to import the XX repository into the YY repository as a subdirectory named ZZ and add all XX's change history to YY.
Folder structure before:
XX
|- .git
|- (project files)
YY
|- .git
|- (project files)
Folder structure after:
YY
|- .git <-- This now contains the change history from XX
|- ZZ <-- This was originally XX
|- (project files)
|- (project files)
Can this be done, or must I resort to using sub-modules?