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
31 changes: 19 additions & 12 deletions REVIEW.md
Original file line number Diff line number Diff line change
@@ -1,45 +1,52 @@
# review items

## how do we fork a repo?

- Fork this repo when the url is shared in slack
Fork on github to your profile. then from your profile clone by copying url.

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

- For discussion and then for all to clone
- From top level folder type git checkout -b "name of new branch"

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

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

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

## 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
- github.com

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

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

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

Type your answer here, use git commands to
html, head, body, div...

## 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
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.5.0/css/bootstrap.min.css"
integrity="sha384-9aIt2nRpC12Uk9gS9baDl411NQApFmC26EwAOH8WgZl5MYYxFfc+NcPb1dKGj7Sk" crossorigin="anonymous">

<style>
.container {
background: linear-gradient(rgb(194, 76, 47), rgb(173, 168, 168));

## 3 - how many ways can you declare a variable
let
const
var

## hint - 1 old school way - the new ways
## provide a few samples
Loading