Skip to content

Latest commit

 

History

History
27 lines (15 loc) · 832 Bytes

File metadata and controls

27 lines (15 loc) · 832 Bytes

Linus's Homework

1. What is 2 + 2?

4

2. What is JavaScript?

A programming language which is, among other things, used on the web to make websites interactive.

3. Name three problems Git & GitHub solve?

  • Track changes in code.
  • Allow multiple people to work on the same codebase.
  • Share code with others.

4. What happens when you fork a repository?

You make a copy of it on your GitHub account, while keeping the connection to the original repository, so you can suggest changes to it, update the forked repository with changes from the original, and so on.

5. What happens when you clone a repository?

You make a copy of it on your local machine.

6. What is a Pull Request?

A Pull Request is a method to propose the changes you have made inside of a branch, or fork, to the original repository.