Skip to content

Answer #9

New issue

Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? # to your account

Open
wants to merge 3 commits into
base: answer
Choose a base branch
from
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
39 changes: 32 additions & 7 deletions REVIEW.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,38 +4,63 @@

- Fork this repo when the url is shared in slack

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

- follow link to repo in Slsck
- on website, fork button, answer where to fork to


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


- For discussion and then for all to clone

git clone <URL of repo>

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

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

git add .

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

git commit -m "message"


## 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 "message"


## 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
two sections, head and 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
-reference style sheet as URL, href="URL"
- create CSS definitions directly
- create CSS inline within HTML


## 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

const a = 4
let b = 5
var c = 6 // old way
Loading