Skip to content

Latest commit

 

History

History
29 lines (15 loc) · 865 Bytes

File metadata and controls

29 lines (15 loc) · 865 Bytes

Linus's Homework

1. What is 2 + 2?

4

2. What is JavaScript?

JavaScript is a scripting language used to create and control dynamic website content

3. Name three problems Git & GitHub solve?

Track changes see what changed, when, and by who

Collaboration multiple people work on the same code safely

Backup & recovery code is saved and can be restored anytime

4. What happens when you fork a repository?

When you fork a repository, you create your own copy of it on your GitHub account, which you can change freely without affecting the original.

5. What happens when you clone a repository?

When you clone a repository, you download a full copy of it to your local computer

6. What is a Pull Request?

A pull request is a request to review and merge the changes from one branch or fork into another branch usually main on GitHub.