Skip to content

Latest commit

 

History

History
27 lines (15 loc) · 745 Bytes

File metadata and controls

27 lines (15 loc) · 745 Bytes

Linus's Homework

1. What is 2 + 2?

4

2. What is JavaScript?

JavaScript is a programming language used to create interactive websites and web applications.

3. Name three problems Git & GitHub solve?

Version control (tracking changes to code over time) Collaboration (multiple people can work on the same project) Backup and history (you can restore previous versions of code)

4. What happens when you fork a repository?

I create my own copy of someone else’s repository on GitHub.

5. What happens when you clone a repository?

I download a copy of the repository to my local computer.

6. What is a Pull Request?

A pull request is a request to merge your changes from one branch or fork into another repository.