djprofessorkash / DS-NTL-062424

Course repo for DS LIVE 062424 at Flatiron School.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

DS-NTL-062424

The centralized course repo for data science content delivery for the DS-NTL-062424 cohort, taught by Kash.

Written Instructions to Connect to This Repository:

  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]/[repo-name].git
  1. Add the /djprofessorkash/ version as the upstream (to pull future changes)
git remote add upstream https://github.com/djprofessorkash/[repo-name].git
  1. You can make changes to the notebooks now! Remember to push your changes to your forked version of the repo (to put your local changes up online):
git add [filename]
git commit -m 'message here'
git push

Whenever you want to get updated notes:

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

About

Course repo for DS LIVE 062424 at Flatiron School.

License:MIT License


Languages

Language:Jupyter Notebook 100.0%