Skip to content

Latest commit

 

History

History
41 lines (30 loc) · 1.63 KB

README.md

File metadata and controls

41 lines (30 loc) · 1.63 KB

DS-NTL-091624's Cohort Repository!

A repository for all lectures, slides, and other resources for the Flatiron School's Live Data Science 091624 Cohort.

cool data graphic from gihpy

Instructions to Connect to this Repository:

We will be going through these instuctions several times during the first week or so of class - no rush!

  1. FORK this repository, creating a copy on your own GitHub account

  2. Then clone your fork down to your local computer

git clone https://github.com/[yourusername]/DS-NTL-091624.git
  1. Add the original non-forked /flatiron-school/ version as the remote upstream within your local forked clone, this will allow you fetch/pull future material
git remote add upstream https://github.com/flatiron-school/DS-NTL-091624.git
  1. You can make changes to any of your local notebooks now and it should not conflict with any new or updated material posted! Remember to push your changes to your forked version of the repo and not the upstream if you want to put your local changes up online and save any notes:
git add [filename]
git commit -m 'message here'
git push origin main

I would encourage everyone to push daily if you are taking lecture notes within the code notebooks!

Instructions to Fetch new Material:

  1. Grab the changes from the upstream remote repo
git fetch upstream
  1. Merge new changes onto your local repo
git merge upstream/main -m "meaningful message about what you're updating"