Catch up on Problem Sets
Should be finished with 01 and 02
Problem Set 03 due next Monday
Do Problem A by Thu to stay on track
Read: through Chapter 9
Lab: Managing projects with GitHub
Next Time: Responsive CSS Frameworks
I will update problem sets as we find and fix bugs in the test suites. You will need to pull these changes into your local copy.
# cd into the project director
cd path/to/repo
# add a reference to the updated version (only once!)
# replace `03` with the problem set number
git remote add upstream https://github.com/info340a-au19/problem-03-starter
# pull in changes - watch for merge conflicts!
git pull upstream master
# install new dependencies (if any)
npm install