A Git egy elosztott verziókezelő rendszer — nyomon követi a fájlok időbeli változásait, lehetővé teszi több ember együttműködését, és megőrzi a projekt teljes történetét. Ez a szoftverfejlesztésben domináns verziókezelő eszköz, amely szinte minden modern munka esetén nélkülözhetetlen.
A verziókezelés szerepe
Version control tracks CHANGES to code over time, providing:
✓ HISTORY — every change is recorded (who, what, when, why) → see how code evolved
✓ COLLABORATION — multiple people work on the same code without overwriting each other
✓ UNDO/RECOVERY — revert to any previous version; recover from mistakes
✓ BRANCHING — work on features in isolation; merge when ready
✓ BACKUP — the code lives in repositories (distributed copies)
