AlgoMaster Logo

Course Setup

Last Updated: December 6, 2025

Install Git Locally

To install Git, you can follow the official instruction for different operating systems from the git-scm.com website:

Verifying Your Installation

After installing Git on any operating system, verifying the installation is essential.

  1. Open Your Terminal or Command Prompt
  2. Run the Version Command: git --version
  3. You should see output similar to: git version 2.x.x
  4. If you see the version number, congratulations! Git is installed correctly.

Clone Practice Repo

To make learning Git more practical, here’s a sample repository you can use to try out the commands from this course.

Clone it to your local machine:

I strongly recommend running each command in this repo as you read about it. Hands-on practice is the fastest way to build real confidence with Git.

You’re also welcome to create your own test repository if you prefer experimenting with your own files.

In the next chapter, we will look at how to customize your Git environment to fit your workflow and enhance your development experience.