Skip to content

Latest commit

 

History

History
28 lines (16 loc) · 779 Bytes

File metadata and controls

28 lines (16 loc) · 779 Bytes

Linus's Homework

1. What is 2 + 2?

29

2. What is JavaScript?

A programming language

3. Name three problems Git & GitHub solve?

Git and Github:

  1. Make it easy for multiple people to collaborate
  2. Both have good version control, so it is easy to know which is the latest version
  3. Each iteration of changes is saved so that it is easy to go back to a previous working version in case of file corruption

4. What happens when you fork a repository?

You make a copy of someone else's repository on your Github account

5. What happens when you clone a repository?

You make a local copy of a repository on your local computer

6. What is a Pull Request?

A pull request lets you ask the repository owner to “pull” your changes into their codebase