Skip to content

London Class 8 - Margarita Glushkova - Git/GitHub - Week 1 #220

New issue

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

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

Already on GitHub? Sign in to your account

Open
wants to merge 1 commit into
base: main
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
46 changes: 22 additions & 24 deletions homework.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,110 +4,108 @@

What is 2 + 2?

5
4

## Question 2

What is the opposite of Black?

Purple
White

## Question 3

What is the 2 * 3 * 6 * 1 * 10 * 34?
What is the 2 _ 3 _ 6 _ 1 _ 10 \* 34?

1322
12240

## Question 4
## Question 4

What does HTML stand for?

Hyper Tall Massive Language
Hypertext Markup Language

## Question 5

What is CSS useful for?

Making a website go faster
Presentation of Web pages.

## Question 6

Using CSS, how would I select every `<h1>` tag on the page?

```css
#h1 {
h1 \* {

}
```
};

## Question 7

What is JavaScript?

A programming language used on the internet
A programming language used to make web pages interactive, add special effects, validation purposes, execute complex actions.

## Question 8

What three problem does Git & Github solve?

When people want to show off code to each other they can put it on Github
Git and Github are version control tools. They help to keep track of any changes that happen with a project.

## Question 9

What happens when you `fork` a repository?

You delete it
You create a copy of this repo. It allows you freely experiment with changes without affecting the original someone else's work.

## Question 10
## Question 10

What happens when you clone a repostory?

It send it to a friend
Repo is copied on your local machine.

## Question 11

What is a Pull Request?

When you send a file over the internet
Is a Request for others to look at changes you've pushed to a branch or fork in a repo on Git Hub.

## Question 12

What is the Git History log?

It lets you see into the future
It shows a list of all the commints made to a repo.

## Question 13

What does it meant to "push" changes to Github?

You send the changes of your local repository to Github
You send the changes of your local repository to your online online repo.

## Question 14

What is Github?

A place for us to store and share our code.
A web-based interface that uses Git. It is an open source version control software that lets multiple people make separate changes to webpages at the same time.

## Question 15

What does it mean to "Commit your changes"?

Send you code to Github
Save your changes to the local repo.

## Question 16

What program do we use to write code at CodeYourFuture?

Microsoft Word
Vs Studio Code

## Question 17

What do you use "Commit Messages" for?

To record what changes you made to the code
To record what changes you made to the code. To summarize a change, help your team to understand what is going on in your project.

## Question 18

Where can I look to find help with Git?

The Git Cheatsheet!
git help --all