- Make sure you're logged in to your account on GitHub.
- Use the link to clone the repo locally:
git clone https://github.com/bethadele/F2JSPDX-Lab2.git
cd F2JSPDX-Lab2
git checkout -b your-github-username
- Run
npm install
. - Your assignment is in lab2.js. There are detailed instructions in the
comments. Be sure to read everything. Run lab.js with
node lab2.js
. - Before you turn in your assignment, run
./node_modules/.bin/grunt
(or justgrunt
, if you have it installed globally) to check for jshint and jscs errors/warnings. Fix all the errors.
Push your branch:
git add .
(Yes, you need that period.)git commit -m "a descriptive message of what you've done goes here"
git status
look good?git push -u origin your-branch-name
- subsequent pushes can be
git push