STAT207 - Data Science Exploration
Spring 2024 - Ellison

Guide: Setting Up git for Data Science Exploration


To set up your ability to download and submit your lab assignments via git, there are four things you need to do:

  1. Create a Github.com Account: If you don't already have a personal Github.com account, then you'll do this once for the entire semester.
  2. Course Setup: You'll do this once for the entire semester.
  3. Computer Setup: You'll do this once for each computer you use.
  4. Assignment Setup: You'll do this once for each lab assignment.
See the instructions below for each of these four set ups. If you are working on lab_01, part of your assignment will be to complete all of these three set ups.

1. Create a Github.com Account

We use a University of Illinois enterprise licensed github.com repository for your course code submissions. You will use your own personal github.com account, but your Illinois netid account and your own personal github.com account will be linked (see course setup below) to enable you to submit your STAT207 assignments.

If you do not have a github.com account, you need to create a free account. Most people use their personal github.com account as part of their professional identity to show off their coding skills in their resume, so choosing a professional username is encouraged (ex: vmellison is one of my personal/professional github.com accounts, not dy$t0pianUnIc0rN).


2. Course Setup

To begin to work on assignments and turn in work, you will need to 1.) create a personal git repository for the course and 2.) link your UIUC netid to your personal github.com account.

To do this, all you need to do is click on this link and follow the instructions.  https://edu.cs.illinois.edu/create-gh-repo/sp24_stat207-el. Come back here once you have the URL for your netid repository.

After doing this, you should be able to see your personal github repository for this class in the official UIUC Coursework Github Enterprise Organization.

It should have the following:
  • name structure: sp24_stat207-el_YOUR_NETID
  • url structure: https://github.com/illinois-cs-coursework/sp24_stat207-el_vellison_YOUR_NETID


Example:

3. Computer Setup

  1. Create a stat207 folder on your Desktop (if you haven’t already)
  2. Using your command line, run the following commands to navigate into your stat207 folder:
    cd Desktop
    cd stat207
  3. Clone a local copy of your git repository with the following command (making sure to replace YOUR_NETID with your own):
    git clone https://github.com/illinois-cs-coursework/sp24_stat207-el_YOUR_NETID YOUR_NETID
    #Example: git clone https://github.com/illinois-cs-coursework/sp24_stat207-el_vellison vellison
    You may be prompted to enter your personal Github.com account username and password.
  4. Navigate into your personal git directory by going into your NetID-named folder (replace NETID with yours):
    cd NETID
  5. Set up a connection (ie. a "nickname") to/for the sp24_stat207-el_.release repository where each week's assignments will be posted for you:
    git remote add release https://github.com/illinois-cs-coursework/sp24_stat207-el_.release.git
  6. Let git know who you are by running the code below and replacing YOUR NAME and EMAIL with your name/email:
    git config user.name "Your Name"
    git config user.email "netid@illinois.edu"


Example:

4. Assignment Setup

Each corresponding lab assignment link in the assignments page will provide specific instructions on how to "download", edit, and "submit" your corresponding assignment to your netid Github repository.