Closed TheLortex closed 3 years ago
Instead of having git managing a lot of objects, tar is used to flatten folders into one file (content.tar).
content.tar
Non-existent or empty folders don't generate a content.tar file.
With this scheme, un-tar is easy and yield the original folder structure: find . -name '*.tar' -exec tar -xvf {} \\;
find . -name '*.tar' -exec tar -xvf {} \\;
Instead of having git managing a lot of objects, tar is used to flatten folders into one file (
content.tar
).Non-existent or empty folders don't generate a
content.tar
file.With this scheme, un-tar is easy and yield the original folder structure:
find . -name '*.tar' -exec tar -xvf {} \\;