So currently I have what seems to be a very complex problem and I need some help on how to fix it without the ability to move binary files to a CDN / dropbox etc. When evaluating this problem please note that removing images / pdfs etc and putting them in dropbox or some other external storage is unfortunately not an option.
So the current issue is that I have a couple hundred repositories and each have a few thousand commits and each repo in general have 3 branches. On one of my test repos if I do a du -sh of the repository it's about 13gb in size. Where as the working directory is about 800mb in size. So what I have tried thus far to reduce the size is the following:
git filter-branch --index-filter "git rm -rf --cached --ignore-unmatch path/to/largest/files.pdf" HEAD
rm -rf .git/refs/original/ && git reflog expire --all && git gc --aggressive --prune
git gc --prune=now --aggressive
git repack -a -d --depth=250 --window=250
After all the tests above the repository directory on du -sh still shows it at 13GB in size. So my next thought is to remove all binary file history (jpg / pdf / png etc) but keep only the latest revision of the binary file. However I'm not sure on how to accomplish that, I could do a
for i in find -name "*.pdf"; do
git filter-branch --index-filter "git rm -rf --cached --ignore-unmatch $i" HEAD
done
for instance, but I'm not sure if thats the best way to go about things as it would probably take forever to complete all the different asset types.
The main objective here is to reduce size by only keeping 1 revision of the binary files in history so that the pack files are smaller in size, all previously deleted binaries in history could also be removed, which I'm 100% fine with but also not sure on how to do that in an automated fashion.
Any help would be appreciated.