Git is a distributed version control system. It means that all developers within a team have a complete version of the project. It is the most widely used modern version control system in the world. A large number of projects rely on Git for version control, including Commercial Projects as well as open-source. using this you'll be able to do the following things.
It Records the changes to project files
It keeps track of all files in a project
we can restore previous versions of files
we can Merge code from the different team members.
Git Installation on Windows:
Download the latest Git for Windows.
To configure your Git username and email, use the following commands:
$ git config --global user.name "Your Name"
$ git config --global user.email "your emsail" Git Installation on Linux:
To download Git in Linux, use the following command in your terminal:
$ sudo apt-get update
$ sudo apt-get install git
Verify the Git Installation:
$ git --version
git version 2.9.2
0 Comments