Install Git

In this section, we will install Git on the computer.

  • Download the latest Git installer for your platform

  • Install from the installer

There are plenty of guides on how to install. Take a look at this one:

https://git-scm.com/book/en/v2/Getting-Started-Installing-Git

Verify

  • Open a terminal

  • Type git --version

If you get something like git version 2.29.1.windows.1 and no error messages, then it's successfully installed.

Git is made up by a set of subcommands. Most Git commands have a git <subcommand> <args> ... type of format.

Last updated