Lesson 1: What is Git and Why You Should Learn It?
What is Git?
Git is a version control system.
It helps you save, track, and manage changes in your project files.
Why Git is Important
Without Git:
❌ You may lose your code
❌ You don’t know what changed
❌ Teamwork becomes difficult
With Git:
✅ Every change is saved
✅ You can go back to old versions
✅ Multiple people can work safely
Real-Life Example
Instead of doing this for your project:
project-final.zip
project-final-2.zip
project-final-latest.zip
Git keeps everything clean and organized automatically with timestamp (you can view on your github account).
Key Benefits of Git
✔ Keeps history of changes
✔ Works offline
✔ Fast and secure
✔ Industry standard

