Joseph Maina

Software Engineer & Educator

September 5, 2024

Git and GitHub Essentials: A Guide to Effective Version Control for Personal Projects

In this article you will learn how to get started using Git and GitHub for version control for personal coding projects.

[Note: This article was originally posted here.]

What is version control?

Version control is a system that records changes to a file or set of files over time so that you can recall specific versions later.

About Version Control

In short, you don't need to make uncountable copies of your work to maintain the revision history of the work. Git will do that for you!

Git is a command line tool used for version control. GitHub is a cloud platform that stores Git repositories1 on the internet. Git/GitHub make working with version control and collaboration easy.

By the end of this article you will have learnt most of the basic Git commands that you will use when working with Git as a version control tool. You will also create a remote repo1 on GitHub.

Prerequisites

Git is a command line tool. Before you learn how to use Git, it is important that you have the following:

  1. Some familiarity with the command line (or terminal) to run Git commands.

  2. A directory in your machine for storing some code. You can name it whatever you like. (But we shall pretend that we are building a Todo app. Maybe name the directory todo)?

  3. An installation of Git in the machine you will use. Check whether Git is installed by running:

    $ git --version2

    If the version number is printed, you have Git installed. Otherwise follow instructions in this guide for your OS to install Git.

  4. A GitHub account.3

Create a repo

You tell Git to be ready to keep a record of the changes happening in your code by initializing a directory as a repo. This is done by calling the init command in the directory.

Create a parent directory named todo in a location of your choice. Open your terminal and change into the todo directory. Once you are in the right directory, type the init command and hit enter:

$ git init

This command will create an empty Git repo ready to record/track changes that happen in your code. This repo is known as a local repo.

Add files to the staging area

Create a file in the todo directory and call it todo.py where you shall type the code for the Todo app.

To tell Git to keep track of changes in the todo.py file, you call the add command. The add command takes a snapshot of the current state of the working tree4 and adds it to the staging area5.

You call add with the name of the file you want to add to the staging area.

$ git add todo.py

When you want to stage several files at once, modify the add command as below (instead of typing out long file names):

$ git add .

Be sure to call the add command whenever you make changes to your code for Git to add them to its index. Otherwise Git will never know what changes you want to record in history.

Check status of a repo

You can check the content of the staging area (the changes Git is keeping track of) by calling the status command.

$ git status

This command will tell you whether a file is staged for commit, unstaged or staged but modified and more.

Commit changes

Changes in your code will be recorded when you call the commit command. This command takes the content of the staging area (index) and adds it to the history of other changes.

The commit command requires a message describing the changes you want to record. The commit message comes in handy when browsing the commit log, the history of changes recorded.

$ git commit -m "Initial commit"

The message that goes with this commit is given by passing the -m option and typing the message in quotes.

An alternative is git commit with no options. This will open a text editor (usually Vim) where you can type in your message. This is useful when you want to give more details about the changes you are committing. Check this article for more information on Git commit messages.

Create branches

One thing I like about using Git for my workflow is that I can develop a small feature, test it out then integrate the feature into the main code when I am satisfied.

Using Git branches makes this workflow possible. To create a branch, call the branch command passing the name of your branch.

$ git branch add-todo

This creates the branch add-todo but does not switch to it. To switch to the new branch, call the switch command.

$ git switch add-todo

Once you switch to another branch, the changes you do to your code will be committed to that branch.

By default, when you initialize a Git repo, a main branch is created. You then create other branches for your other work as needed.

Merge branches

Once you have tested the code in a branch and are satisfied, you can merge that code back to the main branch. Merging is incorporating the changes from one branch into another branch.

To merge changes:

  1. Commit the changes you want to merge.
  2. Switch to the branch you want to merge into.
  3. Call the merge command with the name of the branch you want to merge.

Let's look at an example.

You have made some changes to the Todo app code in the add-todo branch. You now wish to merge the changes to the main branch.

  1. Commit the changes in the add-todo branch:
    • $ git add .
    • $ git commit -m "message describing the changes you made"
  2. Switch to the main branch $ git switch main
  3. Merge the add-todo branch into main branch $ git merge add-todo

After this step, the main branch has all the changes in the code so far.

Commit log

You can see the history of the changes you have made by calling the log command.

$ git log

There are many options you can pass to the log command to format how the log is displayed. See here for an overview.

Push changes to GitHub

When you make some changes to your local repo and have a working app, you may choose to host your repo on GitHub for storage or to collaborate with other developers. You do this by pushing your local repo to GitHub (remote repo). Follow these steps to push your repo to GitHub:

  1. Head over to GitHub
  2. Follow this guide to create a repo
  3. Get the url of the remote repo
  4. Add the url to your local repo
  5. Push your local repo to GitHub

Then head over to GitHub to see a copy of your local repo.

Ignore files and directories

One last thing, you can tell Git to ignore files and directories that you don't want to track. To do this, create a file with the name .gitignore and list all the files and directories that you want ignored by Git.

// create the .gitignore file
$ touch .gitignore
// add the items to be ignored by Git
$ echo file-to-ignore > .gitignore

Any time you call the add command, the file-to-ignore will never be tracked.

Summary

You now know most basic Git commands to start using it in your workflow. Integrating Git in your workflow changes how you work in a great way. You do not need to make copies of files with different names to maintain a revision history of your work. Nor will you need to comment out code that you are testing out. You only need to use the power of one tool: Git.

Any time you are stuck on how to call a command, you can quickly check the Git manpages for help.

git help (with no options) lists the most common commands that you might need.

For help on a specific command, add the name of that command:

$ git help [command]

For instance, to get help on the add command, call:

$ git help add

What to do next

For you to practice the commands you learnt in this article, here is a simple task for you:

  1. Create a Readme.md file.
  2. Add a description of the Todo app, and what features it supports.
  3. Add a License file.
  4. Commit the changes.
  5. Push the changes to GitHub.

Happy coding!

Footnotes

  1. Repository (repo) is a directory whose contents will be under version control. Git adds a .git sub-directory that holds the data for all the changes you make in your repo. All your files and other (sub)directories and the history of the changes made to them over time will be recorded by Git. The repo in your machine is a local repo, while a repo in the cloud is a remote repo. 2

  2. When you see a command like this, remember to hit enter after typing it in the terminal to execute the command.

  3. Learn more on how to get started on GitHub here.

  4. Working tree are the files and directories in your repository.

  5. Staging area (index) is a view of the working area that is ready for commit.