Skip to content

Latest commit

 

History

History
21 lines (15 loc) · 996 Bytes

File metadata and controls

21 lines (15 loc) · 996 Bytes

Linus's Homework

1. What is 2 + 2?

4

2. What is JavaScript?

JavaScript is a versatile scripting language that can create robust web applications.

3. What three problems does Git & GitHub solve?

Version control (tracking and reverting code changes) Collaboration and conflict resolution (branching, merging, pull requests) Backup, sharing, and distribution of code

4. What happens when you fork a repository?

A complete copy of the repository (including code, branches, commits, and tags) is created under your GitHub account.

5. What happens when you clone a repository?

A full copy of the repository is downloaded from GitHub (or another remote) to your local machine. It includes the entire project history (commits, branches, tags).

6. What is a Pull Request?

A request to merge changes from one branch (often from a fork or feature branch) into another repository/branch. Does not automatically merge — requires approval and action from repository maintainers.