Development

Cleanup Binaries in Git History

April 8, 2022
Development
Git

It is considered bad etiquette to track binary objects without the use of LFS, this significantly impacts the performance of the repository for all participants. git Large File Storage replaces larger files with text pointers inside git while storing the actual files differently to prevent significant growth of the history. LFS was created by github, it is an open source project. There are other systems for handling large binary data with git, such as git-annex, but lfs has gained the most traction. ...