Skip to content

answer #10

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 1 commit into
base: master
Choose a base branch
from
Open
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
35 changes: 19 additions & 16 deletions REVIEW.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,44 +2,47 @@

## how do we fork a repo?

- Fork this repo when the url is shared in slack
- Click on link to repo, click fork, and it should fork into your repo

## 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
- CD into folder we want to clone into and do git clone (add in 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 git add -u (add -u for only changed files)

## 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 "adding whatever header"

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

- Type the commands and any extra info you want to share here
- after a git commit -m from staging area, do a git log

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

- Type the commands and any extra info you want to share here
- go on github and check, or a git pull/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.origin.url. To get more info about a particular remote- git remote show (remote-name)
git remote show origin
## how many and what sections are in an html document

Type your answer here, use git commands to
There are 3 sections, the HTML line, head and body
EX: !DOCTYPE html, head, 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
creating a file in VS code and attaching the file to your document via link, or copying the link from the CSS source and posting it in the style.
ex: 1. file - styles.css, "link rel="stylesheet" href="styles.css">
ex: 2. link from source, link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.5.0/css/bootstrap.min.css"

## 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
there are 3 ways to declare a variable - var, let, const
var hello;
let k; k='kentucky';
const fish loves me;