Skip to content

Git

What is Git

Git is a widely used, open source version control system.

Git is used for:

  • Tracking code changes
  • Tracking who made these changes
  • Coding collaboration
  • Reverting to earlier versions of the project

There are some key concepts in Git:

  • Repository:

How to install Git

For Debian/Ubuntu, you can install the latest stable version of Git with one command:

Bash
sudo apt install git

For Ubuntu, this PPA provides the latest stable upstream Git version:

Bash
add-apt-repository ppa:git-core/ppa
sudo apt update
sudo apt install git

How to configure Git

How to use Git

Comments