Skip to content

Latest commit

 

History

History
25 lines (15 loc) · 883 Bytes

File metadata and controls

25 lines (15 loc) · 883 Bytes

Linus's Homework

1. What is 2 + 2?

4

2. What is JavaScript?

A programming language commonly used to make web pages interactive and dynamic.

3. What three problems does Git & GitHub solve?

Version control – tracking changes in code over time. Backup & sharing – safely storing code online and making it accessible to others. Collaboration – allowing multiple developers to work on the same project.

4. What happens when you fork a repository?

You create your own copy of someone else’s repository on GitHub, so you can modify it without affecting the original.

5. What happens when you clone a repository?

You download a copy of the repository from GitHub to your local computer.

6. What is a Pull Request?

A way to propose changes you’ve made in your fork/branch back to the original repository so the maintainers can review and merge them.