Git एक distributed version control system है — यह समय के साथ फ़ाइलों में होने वाले बदलावों को ट्रैक करता है, कई लोगों को साथ मिलकर काम करने देता है, और किसी प्रोजेक्ट का पूरा इतिहास सुरक्षित रखता है। यह सॉफ़्टवेयर डेवलपमेंट में सबसे प्रमुख version control टूल है, और लगभग हर आधुनिक काम के लिए ज़रूरी है।
Version control क्या करता है
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)
