I have removed the +1K build files I accidentally committed (in 4ebd8384963f57b7331a051394296dcb48be2e9a) from the tree. You should probably run git garbage collector on the server. ```shell # Check the size of the repo git count-objects -vH
# expire all reflogs and expire obsolete refs git reflog expire --expire=now --all # clean up git gc --prune=now --aggressive # quickly make sure it is not there anymore git for-each-ref --contains 4ebd8384963f57b7331a051394296dcb48be2e9a || echo 'not referenced by any ref' git rev-list --objects --all | grep 4ebd8384963f57b7331a051394296dcb48be2e9a || echo 'object not found in rev-list'
# should be smaller git count-objects -vH ```
I have already done it locally. Sorry about this. There was too many file changed and I didn't even saw them. That a separate issue I should address in my IDE but we could also update our `.gitignore` to ignore those files to avoid such accidental commits...