From b0cf539228a929449b826570557e42dd1569c0d6 Mon Sep 17 00:00:00 2001 From: Hannah1622 Date: Fri, 16 May 2025 14:08:00 +0100 Subject: [PATCH] Help Linus --- homework.md | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/homework.md b/homework.md index f7a8449a..d8c76c55 100644 --- a/homework.md +++ b/homework.md @@ -2,24 +2,24 @@ ## 1. What is 2 + 2? -5 +4 ## 2. What is JavaScript? -An exciting new play about coffee. +JavaScript is a programming language ## 3. What three problems does Git & GitHub solve? -When people want to show off code to each other they can put it on GitHub + tracking code changes, collaborating with others, and backing up code securely online. ## 4. What happens when you `fork` a repository? -You delete it +you create a copy of someone else's project under your own GitHub account so you can freely edit it without affecting the original. ## 5. What happens when you clone a repository? -It send it to a friend +When you clone a repository, you download a full copy of it to your local computer, including all its files, history, and branches, so you can work on it offline. ## 6. What is a Pull Request? -When you send a file over the internet +A Pull Request is a way to propose changes to a repository by asking the project owner to review and merge your code into the main project.