Skip to content

kingluddite/catchup-01-javascript

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

18 Commits
 
 

Repository files navigation

Catchup #1: JavaScript

Summary

Review of Essential JavaScript

Slideshow

Instructions

Clone to your computer

  • note The $ below means "Type this in the Terminal". When writing the following Terminal commands, ignore the $ and type the rest. You will see people represent the Terminal on sites like Stackoverflow with the $. Repeat. You don't need to type the $. (Don't confuse this $ with the $ from jQuery)

$ git clone https://githttps://github.com/kingluddite/js-catchup-activities.git

Pull down all branches

  • Each of the lessons will be contained inside their own branches. You need to pull down these remote branches to your local machine

  • Use the following two commands to pull remote branches down to your local machine

  • $ git fetch --all

  • $ git pull --all

Checkout branches locally

  • To focus more on the code we will just checkout a branch to work on the next lesson
  • You have access to the repo after the Catchup so you can play around with the code (the best way to learn how to code is.... to code)
  • To checkout a branch just type any of the following to checkout that particular branch
  • To see all your branches you can type $ git branch, (you won't see a list of the branches until you check each one out individually)
  • To break out of the list of branches type q for quit
$ git checkout master
$ git checkout 01-basic
$ git checkout 02-activity-01-start
$ git checkout 03-activity-01-solution
$ git checkout 04-activity-02-start
$ git checkout 05-activity-02-solution
$ git checkout 06-activity-03-start
$ git checkout 07-activity-03-solution
$ git checkout 08-activity-04-start
$ git checkout 09-activity--04-solution
$ git checkout 10-activity-05-start
$ git checkout 11-activity-05-solution

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published