We are migrating a 5GB repository from SVN to GIT
SVN to GIT migration
svn2git http://xxx/svn/yy --trunk trunk --nobranches --notags --username user --metadata --authors /xx/yyy/authors.txt
LFS migration
java -jar ../bfg-1.14.0.jar --convert-to-git-lfs "*.{png,zip,jar,xls,xlsx,ppt,pptx,fmb,pll,ttf,afm,pfa,ttf,rdf,jpg,gif,tif,doc,docx,pdf,}" --no-blob-protection
git reflog expire --expire=now --all && git gc --prune=now
We also tried
git reflog expire --expire=now --all && git gc --prune=now --aggressive but this was taking a long time and crashed after 99%
After BFG migration the GIT repository has a total of 25 GByte and the .git/lfs store has 24 Gbyte
Why ist the LFS store getting so big and how could we reduce the size ?