Skip to content

hijackjones/intermediate-workbook

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Intermediate Workbook

Claiming your workbook

  1. Click the 'Fork' button (choose your account if prompted).
  2. Copy the HTTPS clone URL
  3. In your terminal, navigate (using cd) into a directory where you want to start keeping your repositories.
  4. Clone your new repository by typing git clone <forked clone URL> (without carets "<>", ditto for future examples) Forking a repository
  5. Add the base repository as an upstream git remote add upstream https://github.com/AustinCodingAcademy/intermediate-workbook.git

Push to Github and create a PR

  1. When finished, commit your changes and push to GitHub
git status
git add LessonZeroTest.js
git commit -m "Lesson Zero Tests passing!"
git push origin gh-pages
  1. Now go to your forked repository on GitHub. A little yellow box should have popped up asking you to make a Pull Request. Click to review.

  2. Click "Create Pull Request"

  3. Everytime you make a change and push to GitHub, this PR will automatically update. No need to do it more than once.

Get latest test updates

  1. To get the latest test updates, be sure to have a "clean working directory" by committing or removing all of your changes. You check for a "clean working environment" by running git status and making sure no files show up.
  2. Run git pull upstream gh-pages

Contributing workflow

Running Tests

Tests are a great way to make sure you code works the way you planned it would, and to make sure you don't break something in the future. We will be using them to test our understanding of the lesson.

Run a single test

To run a single test on an app, test, or a kata, simply run npm test apps/01PigLatin.js, etc.

Run all tests in the test/ directory

Simply run npm test in the project directory.

About

Austin Coding Academy - Frontend Intermediate Workbook

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • JavaScript 83.6%
  • HTML 11.4%
  • CSS 5.0%