What is Git?

It is free openSource version Control System

What is 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.

Git Commands

1. Configuring Your Name & Email

In 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.

1) The git config command

Here’s the git config command: