I'm currently on a Unity project where there is a certain folder we can't commit, because it contains cached data that changes frequently, but is necessary for the application to run, and the last version must
Currently, we have to zip the folder, and commit the zip. This is obviously time-consuming.
Is there a way to make SVN or GIT "think" of a folder as if it were a binary file? Specifically, it would ignore the individual file tree inside that folder, instead processing it as one single chunk.
Is this possible? Is there another version control solution which can do this? Thanks.
(I was originally going to write a BAT file which would automatically do the zip and unzip, but seeing as Windows 7's onboard zipping utility is inaccessible from the command line...)