Git is a distributed version control system — it tracks changes to files over time, lets multiple people collaborate, and preserves a complete history of a project. It's the dominant version control tool in software development, essential for nearly all modern work.
What version control does
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)
