I have a git repository that has a lot of ignored directories in it. However, when someone new downloads the repository, I want them to have the directory structure just not the files within it.
For example, my structure is
- Data
- Folder1
- ...
- Folder20
And I currently have a .gitignore
with !.gitignore
in Data. Is the best to create the structure to have a script in my repository that installs it?