May 2018
Beginner to intermediate
452 pages
11h 26m
English
Once Git is installed, we need to initialize and configure our project directory as a Git repository by following these steps:
git init
This command creates a hidden directory under our project root called .git and initializes it with the basic files that make up the repository. The .git directory will contain all the data and metadata about our saved revisions.