Skip to content

Introduction to Version Control and git

TL; DR

  • Instead of saving code manually, you let software (specifically git) manage your code versions
  • git is a local tool for version control, GitHub is an optional remote tool you pair with
  • git and GitHub both have command line and GUI based tools: I personally recommend learning git for the command line, and using a web tool for managing GitHub

Why Should You Care

Writing code is never just writing code. While it's the most fun step, writing code effectively is all about managing code, and for that you must make sure you're working on the right version. Whether you're on a team or a solo project, you'll make changes - hopefully good ones - and that means different versions floating around. The last thing you want is to have spent a day debugging, adding a new feature, or deploying only to find you've been working with an out-of-date codebase.

Software developers like having automated tools for everything, and version control is no exception. git is not just one such tool, it is the tool. Instead of saving each version of your files as "_v1", "_v2", etc., you track changes with git, which can compare different versions and branches of files over time. This means you can always rollback changes, merge changes from others, and 'fast forward' code to include new features.

Tip

It's important to note that git only works with text-based files: this is fine for most anything a developer is doing, but if you're working on things like Office Documents, it won't work. (I'll be posting later on about the nature of Office Documents and how they aren't what they seem: stay tuned).

git itself only runs locally on your machine, but that's why you extend git with an online tool, like GitHub. GitHub allows you to push your codebase to an online site that so that you can work on the same files from multiple machines, share code with friends and teammates, or even deploy from a single spot. There are plenty of tutorials1 on git and GitHub to refer to, but here are the basics I have found helpful.

Quick Overview

Working with git in the command line can be hard if you're not used to using a terminal, but this is one tool where it really pays off to feel very comfortable in the command line. Working with these short commands allows you to commit code early and often, which will save you plenty of heartache in the long run.

Basic git commands
# Creates a new git repository in the root folder
git init

# Shows the status of your current branch
git status

# Adds files to be tracked
git add .

# 'Saves' a version. One should always have a brief, descriptive message.
git commit -m "MESSAGE"

# Pushes your commit to the specified branch on your GitHub repository
# See below for creating a remote GitHub repository
git push origin branch_name

# Creates a new branch (remove -b to access an existing branch)
git checkout -b branch

# These 3 commands add a new remote and push your main branch the 1st time.
# This assumes you have already created that branch on GitHub
git remote add origin https://github.com/USERNAME/REPO_NAME.git
git branch -M main
git push -u origin main

# Opposite of push: this pulls your main branch from your remote
git pull origin main

Basic Workflow

This workflow assumes everything goes right (which it rarely does), but it should ground you in the basics of how you might use git and GitHub.

Basic git workflow
git add .

git commit -m "I updated the MeaningOfLife function to return 42"

git push origin branch_name


# Typically you use a pull request to combine
# your branch with the main code base branch
# I recommend handling all pull requests on
# GitHub itself so we'll skip that here


# Now that you've merged main and your branch on your remote location,
# it's time to update the main branch on your local machine
git pull origin main

# Merges your two branches locally so everything is up to date
git checkout branch_name
git merge main

Closing Topics

I'll refresh this over time with more references for what to do when something goes wrong (undoing commits, merge with a teammate's code, rebasing etc.) but this should be enough to get you started on a solo project. Happy coding!


  1. This tutorial here from GitLab is a great introduction to using git on the command line, and also references this dead-useful cheat sheet

Back to top