What is

?

Introduction


What is git?

Git is a type of version control software that makes it easy for multiple people to collaborate on a codebase.

How does git work?

Git works by saving multiple copies of the changed files. This allows software developers to make changes and then reverse those changes if the new code has bugs. Git also tracks when files are changed which simplifies the process of combining multiple versions of code.

What is the history of git?

Git was originally developed by the Linux development community in 2005 to help streamline the Linux kernel development process.

Note: This tutorial was created using git version 2.24.3.

Basic Concepts


Three Steps


There are three steps for this tutorial that focus on starting out, branching, and working with a remote server.
  1. The starting out section teaches you how to locally start a project and save your progress.
  2. The branching section teaches you how to create multiple versions of your project and then combine those versions together.
  3. The remote server section teaches you how to pull and push code changes to and from a remote server.
Open up your console window and let's get started.
Console window with the text git...
Start the tutorial →