Introduction
Git is the most popular version control system...

Installation
sudo apt update sudo apt install git
Configuration
Set your global username and email:
git config --global user.name "Your Name" git config --global user.email "EMAIL_ADDRESS"

