i'm using git as a versioning system for a vr project.
I've been asked to version the main vr project and the source files of the created assets, but i've also been requested to separate the two in terms of folders.
What i tought is to have the main (git) project containing the folder of the vr project itself separated from the folder containing the source files of the asset and have some per user configuration to let 3d artist not fetching (downloading) the main vr project folder and vr artist not fetching the asset source folder.
The actual situation involve more folders but this is the principle: version everything and have anyone fetch just the folder needed.
Is there any way to do this?
i know of .gitignore files, but they are needed only to avoid to commit files/folders and not to avod fetching, right?
I found out .git/info/exclude but if i'm correct it is just a global .gitignore, with the difference that it's not versioned so it can be specific for each clone of the repo.