git and GitHub recap

Version Control with git and GitHub

Aka – Say goodbye to script_JB_03v5b.R !!

The problem with save_as

Every file in the scientific process changes. Manuscripts are edited. Figures get revised. Code gets fixed when problems are discovered. Data files get combined together, then errors are fixed, and then they are split and combined again. In the course of a single analysis, one can expect thousands of changes to files. And yet, all we use to track this are simplistic filenames. You might think there is a better way, and you’d be right: version control.

Version control systems help you track all of the changes to your files, without the spaghetti mess that ensues from simple file renaming. In other words, version control is a system that helps you to manage the different versions of your files in an organized manner. It will help you to never have to duplicate files using save as as a way to keep different versions of a file (see below). Version control help you to create a timeline of snapshots containing the different versions of a file. At any point in time, you will be able to roll back to a specific version. Bonus: you can add a short description (commit message) to remember what each specific version is about.

What is the difference between git and GitHub?

  • git: is a version control software used to track files in a folder (a repository)
    • git creates a timeline or history of your files
  • GitHub: is a code repository in the cloud that enables users to store their git repositories and share them with others. Github also add many features to manage projects and document your work.

git

This section focuses on the code versioning system called Git. Note that there are others, such as Mercurial or svn for example.

Git is a free and open source distributed version control system. It has many functionalities and was originally geared towards software development and production environment. In fact, Git was initially designed and developed in 2005 by Linux kernel developers (including Linus Torvalds) to track the development of the Linux kernel. Here is a fun video of Linus Torvalds touting Git to Google.

How does it work?

Git can be enabled on a specific folder/directory on your file system to version files within that directory (including sub-directories). In git (and other version control systems) terms, this “tracked folder” is called a repository (which formally is a specific data structure storing versioning information).

What git is not:

  • Git is not a backup per se
  • Git is not good at versioning large files (there are workarounds) => not meant for data

What we want to avoid:

https://xkcd.com/1597/

Repository

Git can be enabled on a specific folder/directory on your file system to version files within that directory (including sub-directories). In git (and other version control systems) terms, this “tracked folder” is called a repository (which formally is a specific data structure storing versioning information).

Although there many ways to start a new repository, GitHub (or any other cloud solutions, such as GitLab) provide among the most convenient way of starting a repository.

GitHub

GitHub is a company that hosts git repositories online and provides several collaboration features (among which forking). GitHub fosters a great user community and has built a nice web interface to git, also adding great visualization/rendering capacities of your data.

Let’s look at a repository on GitHub

The screenshot below shows the landing page of a repository on GitHub. We would like to highlight different important part of this view:

  • Directly under the navigation bar (top-left) you will find the name of the repository (orange)
  • Above the files listing, there is information about the latest commit to this repository (blue)
  • On the left, you will have the files and folder names (red)
  • In the middle, the last commit message on this file (or file contained in a folder) (purple)
  • On the right, the time stamps of the latest commit (green)

Below the file listing, there will be a rendering of the README.md file, one more reason to make sure to add one :) Looking into more details at the information provided about the last commit, we can see that we know:

  • Which user did this last commit (brunj7) and the associated commit message
  • The the 7 first digit of unique identifier (SHA) of this commit
  • When this last commit was made (3 months ago) = The total number of commits on this branch (43 Commits)

This total number of commits is actually a hyperlink that lets you access the full history of the main branch by clicking on it.

We can keep drilling and look at a specific commit by clicking on the hash number. For example if we look at the first commit at the top (20bc390), we can see the exact changes that have been made:

Tracking these changes, and seeing how they relate to scripts and files is exactly what Git and GitHub are good for. We will show how they can really be effective for tracking versions of scientific code, figures, and other text files such as manuscripts to develop a reproducible workflow.

GitHub Organization page

We will talk more about GitHub Organizations later. In a nutshell, organizations are like groups or teams that users can be members of. Like Users, Organizations can have a landing page and own repositories. However, they add several perks in terms of user management. Similarly to Users, you can access repositories from an Organization by clicking on the repositories tab in the main GitHub menu bar at the top. You can access an organization’s page similarly to a user: https://github.com/organization-name; e.g. https://github.com/UCSB-Library-Research-Data-Services



Bren School logo

The original parts of this work are licensed under a Creative Commons Attribution 4.0 International License.

This website was made with quarto by Posit.