Git Tutorial
What is Git
Git is a distributed version-control system for tracking changes in source code during software development. It is designed for coordinating work among programmers, but it can be used to track changes in any set of files. Its goals include speed, data integrity, and support for distributed, non-linear workflows.
Before we begin, you have to install a Git client
1)Linux
yum install git
apt-get install git
zypper in git
2)Mac
brew install git
3)Windows