Install Git, Version Control System

Linux
yay -S git
Windows
From an administrator terminal do
choco install git -y
OSX
brew install git

Irrespective of platform start a terminal and key in the following, each line concluded with a carriage return (enter, ↵), and substituting your own details for foo.

git config --global user.name "foo"
git config --global user.email "foo@foo.bar"
git config --list

Now git is ready for regular use.