Intro to Git and GitHub

Git is a free and open-source system for version control (VCS). It helps you manage projects of any size, from small to very large, quickly and efficiently. Git was created by Linus Torvalds in 2005 to develop the Linux kernel.

At a basic level, a version control system does two main things: it lets you track changes in your files and it makes it easier to work with other people on the same files or projects.

How to Install Git (Linux)

To install Git on Linux, open the terminal and copy & paste the command below. Then press Return. You might need to enter your password.

sudo apt-get update
sudo apt-get upgrade
sudo apt-get install git

Documentation for Workshop

I have written a complete guide for a Git workshop. It covers many topics and best practices. I am happy to share this guide with anyone who wants to improve their Git skills.

Introduction to Git PDF Document • 2,092 KB

Install latest Git