Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
node_modules
26 changes: 20 additions & 6 deletions REVIEW.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,43 +3,57 @@
## how do we fork a repo?

- Fork this repo when the url is shared in slack
- Click on the url provided in slack, click the Fork button on GitHub.
- Then, tell it to fork to your personal profile, once there, copy the url for the repo
- (this can either be in the browser at the top or via the clone button in the GitHub page)
- go back to VS Code; make sure you are in the Code folder (or whatever your coding folder is),
- I use pwd for that and an ls to just make sure.
- Then, I do git clone <repo url>

## how do clone a repo to be available on our local?
## how do we clone a repo to be available on our local?

- For discussion and then for all to clone
- Copy the repo link and in VS Code (again, the Code folder) and use git clone <repo url>

## how do we move changes from working folder to staging?

- Type the commands and any extra info you want to share here
- git add . (or whatever the file name is)

## how do we move changes from staging folder to the local repo?

- Type the commands and any extra info you want to share here

## how do we move changes from staging folder to the local repo?

- Type the commands and any extra info you want to share here
- git commit -m "Type message here"

## how do we confirm what is in the local repo

- Type the commands and any extra info you want to share here
- git status

## how do we confirm what is in the remote repo

- Type the commands and any extra info you want to share here
-git log

## how do we confirm the url of our git remotes?

- Type the commands and any extra info you want to share here
- git remote -v

## how many and what sections are in an html document

Type your answer here, use git commands to
- 2, the head and the body

## there are two ways to reference css in the header - show examples of two tags that are used for styling

Type your answer here and push it up
- stylesheet via a link or using <style>

## 3 - how many ways can you declare a variable
## hint - 1 old school way - the new ways
## provide a few samples
## provide a few samples
3 ways: var, let, const
var (old way) - ex: var x = "John Doe"
let (newer) - ex: let studentName = "Steph"
const(newer, doesn't change) - ex: const classCount = 25
Loading