Git është një sistem i shpërndarë i kontrollit të versionit — ai gjurmon ndryshimet në skedara me kalimin e kohës, lejon shumë persona të bashkëpunojnë, dhe ruan një historik të plotë të një projekti. Është mjeti dominues i kontrollit të versionit në zhvillimin e softuerit, thelbësor për pothuajse të gjithë punën moderne.
Çfarë bën kontrolli i versionit
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)
