=== Understanding Git Commands, Mastering Version Control
Git, the essential version control tool. Linus Benedict Torvalds, the legendary programmer and creator of the Linux kernel, invented this famous version control system.
git init
The first thing to do when creating a new project. Creates a .git repository (hidden folder) in the project directory. A repository is a collection of all changes to your project files stored in chronological order.
git config
$:git config --global user.name "Your name"
$:git config --global user.email "YourEmail@xxx.com"