Skip to content
forked from UVADS/DS2022

Course material for DS2022 Systems I: Introduction to Computing

Notifications You must be signed in to change notification settings

uvasds-systems/DS2022

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

DS2022

Course material for DS2022 Systems I: Introduction to Computing

Fall 2024

Instructor: Neal Magee

Syllabi and course details are in Canvas:

Setup

Please read and complete all setup instructions found here.

Content

Weekly modules

Forks

Once you have forked this repository, you have two options for keeping your fork current with new changes added to the original repository:

Update your fork with the GitHub UI

  1. Find the "Sync Fork" button on the main page of your fork in GitHub.
  2. Within the drop-down menu, click on "Update Branch" to incorporate all upstream changes.

Sync Fork with Upstream

Update your fork with the CLI

To stay current with new releases into the course repository, follow these steps:

  1. Add an upstream source
git remote add upstream https://github.com/uvasds-systems/ds2002.git
  1. Fetch from the upstream branch:
git fetch upstream
  1. Merge your branch with the upstream branch.
git merge upstream/main main

This can be run in a single block:

git remote add upstream https://github.com/uvasds-systems/ds2002.git
git fetch upstream
git merge upstream/main main

This will pull all upstream changes in and merge them with your fork. Note that the first line is a one-time configuration, whereas lines 2 and 3 can be used repeatedly to catch up with the upstream source.

About

Course material for DS2022 Systems I: Introduction to Computing

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Python 60.6%
  • Shell 39.4%