Git LFS (Large File Storage) är ett tillägg för att hantera stora binära filer (videor, dataset, designtillgångar, stora binärer) effektivt i Git. Git är designat för text/källkod och hanterar stora binärer dåligt, så LFS lagrar dem separat medan små referenserna hålls i repositoryt.
Problemet: Git och stora binärer
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.
