How to disable delta compression on Stash server for a particular file type
Purpose
Git is notoriously bad at handling binary files. This is one step you can take to manage large repositories made up from code bases that have to track huge binary assets. For binary files that change significantly – and not just some meta data headers – the delta compression is probably going to be useless so the suggestion is to turn delta off for those files to avoid the unnecessary delta compression work as part of the repack.
Resolution
- Find the repo ID number by going to repository settings of the repo you would like to add this parameter to. There you will find the "Location on disk".
- Edit the
.gitattributes
file in<Stash_Home>/data/repositories/<repo_ID_number>/info/attributes
- Add the following line to the
.gitattributes
.
*.jpg binary -delta
Checkout this page for more information on .gitattributes
.
Related Content
Please read this blog for more information on how to handle big repositories.