It is free openSource version Control System
We as a programmer can't track every files in our project so we use a version control system which tracks documents, files and everything in our projects and keep tracks of changes made into version control system.
repo
—> repositoryclone
—> bring a repo down from the internet (remote repository like Github) to your local machineadd
—> track your files and changes with Gitcommit
—> save your changes into Gitpush
—> push your changes to your remote repo on Github (or another website)pull
—> pull changes down from the remote repo to your local machinecli
—> Command Linecd
→ ChangeDirectoryIn your terminal, run the following commands to identify yourself with Git:
git config --global user.name "Your Name"
git config --global user.email "[email protected]"
Replace the values inside the quotes with your name and email address.
git config
commandHere’s the git config
command: