Git LFS (Large File Storage) egy bővítmény nagy bináris fájlok (videók, adathalmazok, tervezési资产, nagy binárisok) hatékony kezeléséhez a Gitben. A Git szöveges/forráskódhoz van tervezve, és rosszul kezeli a nagy binárisokat, ezért az LFS külön tároli őket, miközben könnyű referenciákat tart a repositoriumban.
A probléma: Git és nagy binárisok
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.
