For any new lecture notes, duplicate the notebook you will be using and rename it to something suitable (e.g ProgrammingFundamentalsI_Notes.ipynb).
Fork the repository at https://github.com/learn-co-students/nyc-mhtn-ds-091420-lectures
** this step only happens once**
- If you have set the remote skip to step 2️⃣
- 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-091420-lectures.git
- 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
- Update the changes from the upstream learn-co lecture notes repo
git fetch upstream master
- Check that the master branch is selected
git branch
- Merge the new changes from the upstream learn-co lecture notes repo, with a commit message
git merge upstream/master -m 'what you updated'
- Push the changes to the forked lecture repo 🙌
git push
- Check if new material is available
git status
- If your local files are behind, pull down new changes
git pull origin master