Version Control with Git: Intermediate

Wolfman and Dracula have been hired by Universal Missions (a space services spinoff from Euphoric State University) to investigate if it is possible to send their next planetary lander to Mars. They want to be able to work on the plans at the same time, but they have run into problems doing this in the past. If they take turns, each one will spend a lot of time waiting for the other to finish, but if they work on their own copies and email changes back and forth things will be lost, overwritten, or duplicated.

A colleague suggests using version control to manage their work. Version control is better than mailing files back and forth:

Teams are not the only ones to benefit from version control: lone researchers can benefit immensely. Keeping a record of what was changed, when, and why is extremely useful for all researchers if they ever need to come back to the project later on (e.g., a year later, when memory has faded).

Version control is the lab notebook of the digital world: it’s what professionals use to keep track of what they’ve done and to collaborate with other people. Every large software development project relies on it, and most programmers use it for their small jobs as well. And it isn’t just for software: books, papers, small data sets, and anything that changes over time or needs to be shared can and should be stored in a version control system.

Prerequisites

In this lesson we use Git from the Unix Shell. Some previous experience with the shell is expected, but isn’t mandatory.

Schedule

Setup Download files required for the lesson
00:00 1. Introduction to Git What is version control and why should I use it?
00:20 2. Collaborating How can I use version control to collaborate with other people?
00:45 3. Conflicts What do I do when my changes conflict with someone else’s?
01:00 4. Branches How do I create a branch for my project?
01:25 5. Forks and Pull Requests How do I contribute to repositories I have not been given permission to modify?
01:55 6. Integrate Matlab and Git How can I version control my MATLAB files with Git?
02:10 7. Resources to learn more How can I continue learning Git?
02:15 Finish

The actual schedule may vary slightly depending on the topics and exercises chosen by the instructor.