Git LFS (Large File Storage) huwa estensjoni għall-ġestjoni ta' fajls binari kbar (videos, datasets, design assets, binaries kbar) b'mod effiċjenti f'Git. Git iddisinjat għal test/source code u jipproċessa l-binaries kbar ħażin, għalhekk LFS jaħżinhom separatament milli jżomm referenzi ħfifa fil-repository.
Il-problema: Git u binaries kbar
Git stores every version of every file in its history (the full content):
→ LARGE BINARY files (videos, datasets, PSDs, big binaries) bloat the repo ENORMOUSLY:
- every change stores another full copy (binaries don't diff well)
- the repo and EVERY clone become huge and slow (clone/fetch download all history)
- history can't be shrunk easily (the large blobs are permanent)
→ Git is great for source code (text, diffable), POOR for large binaries.
