Git on hajautettu versionhallintajärjestelmä — se seuraa tiedostoihin tehtyjä muutoksia ajan kuluessa, mahdollistaa useiden ihmisten yhteistyön ja säilyttää projektin täydellisen historian. Se on hallitseva versionhallintaväline ohjelmistokehityksessä, välttämätön lähes kaikessa nykyaikaisessa työssä.
Mitä versionhallinta tekee
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)
