1. Explaining a Ten year old what is Git: πŸ€“ (IMP)

πŸ‘‰Git is kind of book keeping mechanism which record the changes about who made changes,when made changes and what changes were made!

πŸ‘‰So if code is broken then you go back to previous one as computer are flawless but humans are not

πŸ‘‰Git is the change tracking mechanism

2. What is Repository? πŸ€“

πŸ‘‰All your source file in one folder or programming content at one place!

Things to note: πŸ€“

According to your changes in code note down the following:

πŸ‘‰Green color is for added

πŸ‘‰Red color is for removed

πŸ‘‰+ is file added

3. All about commit : πŸ€“ (IMP)

πŸ‘‰What is commit?

This is like commiting something. So when you made changes to code, you commit it writing a commit message about the change you made! Just like you change and save it

πŸ‘‰Know about some Good commit messages!