Skip to content

Latest commit

 

History

History
29 lines (15 loc) · 1.02 KB

File metadata and controls

29 lines (15 loc) · 1.02 KB

Linus's Homework

1. What is 2 + 2?

4

2. What is JavaScript?

JavaScript is a programming language mainly used to make web pages interactive and dynamic, running directly in the browser. It’s also used on servers (with Node.js) to build full applications.

3. What three problems does Git & GitHub solve?

  1. WVersion control – track and manage changes to code over time.

  2. Collaboration – multiple people can work on the same project without overwriting each other’s work.

  3. Backup & sharing – store code remotely, making it safe and accessible from anywhere.

4. What happens when you fork a repository?

When you fork a repository, GitHub creates a copy of that repo under your own account.

5. What happens when you clone a repository?

You create a full copy of the repo from GitHub (or another host) onto your local machine.

6. What is a Pull Request?

A Pull Request (PR) is a way to propose changes you’ve made in your branch or fork to be merged into another branch (often the main project)...