This page is the first part of an introduction to Git:
- Installation
- Quickstart
- Cheat Sheet
- Gitignore
To install Git on:
$ sudo apt-get install git
git
on the terminal and you don’t have it installed, it will prompt you to install itDouble check that you have Git installed (and see what version you have at the same time) by running:
$ git --version
This should return the version number, eg git version 2.34.1
. See the full documentation for installing Git here.
Many people prefer to use Git via a graphical user interface (GUI) instead of via the terminal. Some options that you can install include:
Next: create a new repository by following a quickstart guide