Skip to content

rcharan/nyc-mhtn-ds-082619-lectures

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

89 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Lecture Notes for nyc-mhtn-ds-082619 💾

For any new lecture notes, duplicate the notebook you will be using and rename it to something suitable (e.g ProgrammingFundamentalsI_Notes.ipynb).

If you want to store your notes in a personal repository on GitHub

Clone down your forked repository

** this step only happens once**

From your local folder with the forked repository

  • If you have set the remote skip to step 2️⃣
  1. Add the learn-co lecture notes repo as the remote, this step only happens once
git remote add upstream https://github.com/learn-co-students/nyc-mhtn-ds-082619-lectures.git
  1. Check the remote is set and your lecture notes repo is correct. You should see your forked repo after origin, and the learn-co-students repo after upstream
git remote -v
  1. Update the changes from the upstream learn-co lecture notes repo
git fetch upstream V2
  1. Check that the V2 branch is selected
git branch
  1. Merge the new changes from the upstream learn-co lecture notes repo, with a commit message
git merge upstream/V2 -m 'what you updated'
  1. Push the changes to the forked lecture repo 🙌
git push

If you only want to save your notes locally

Clone down this repository.

  1. Check if new material is available
git status
  1. If your local files are behind, pull down new changes
git pull origin V2

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Jupyter Notebook 91.9%
  • Python 5.7%
  • HTML 2.4%