In my Android project, I have a lot of heavy binary assets under <project>/src/main/assets
. There's numerous files that collectively add up to tens, maybe hundreds of megabytes. Git LFS might not be an option here due to the number of files, but I'm not sure. What would be everyone's recommendation to keep these files out of Git to keep main repository size small? This becomes especially important when hosting git repositories on cloud services like Bitbucket and Github.
Asked
Active
Viewed 326 times
0

void.pointer
- 24,859
- 31
- 132
- 243
-
Are you going to be updating or rebuilding these files in a commit-by-commit fashion, or will they remain relatively static as other things progress? – Jim Redmond Jan 29 '18 at 21:42
-
You can have your heavy assets binaries as a separate repository and load them into your project by implementing git submodules. It will checkout the binaries for your project. – Kostas Drak Jan 29 '18 at 22:01