Git for Beginners: Basics and Essential Commands

1.What is Git
Linus Torvalds invented Git 16 Years ago in order to continue development of the linux kernel
git is a version control system
git allow us :
maintaon multiple version
mutiple users to work together to keep track of files
Who did the change
When did the change
What Changs He/She did
2.Why Git is Used
Over 70% of developers use git
Developers can work together from anywhere in the world
Developers can see the full history of the projects
Developers can revert to earlier version of project
3.Git Basics and Core Terminologies
git is a version control system that maintains the entire code history and the there basic areas of git are :
working directory
Staging areas
Repository
Most Common terminologies:
git Repository
git working
git Remote Repository
Branch
merge
pull
push
status
clone
4.Common Git Commands
There are most common Git command
basic commands,
branch command
merge
clone
Staging arena/index
and their commands will be 90% of what we use in daily life. Git pull, git status, git add, git command, git push, git branch, git checkout. So after reading Git, we understand that it is the information our entire project. If you have multiple developers working on the same project together, then it will be very important in sharing the project. We have read this and we can say that Git is very important for us. If someone has to share the code, if someone has to take the code from someone, if multiple developers are working on one project.

