Git हे एक विस्तृत व्हर्जन कंट्रोल सिस्टम आहे — हे फाइलांमधील बदल वेळेनुसार ट्रॅक करते, अनेक लोकांना सहयोग करू देते आणि प्रकल्पाचा संपूर्ण इतिहास संरक्षित करते. हे सॉफ्टवेअर विकासमध्ये प्रभावी व्हर्जन कंट्रोल टूल आहे, जो जवळजवळ सर्व आधुनिक काम करण्यासाठी आवश्यक आहे.
व्हर्जन कंट्रोल काय करते
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)
