From 1aefcfd99cc7f5ab8131d0a04fbbb03be756cc6f Mon Sep 17 00:00:00 2001 From: ChinweP Date: Mon, 1 Jun 2026 23:13:59 +0100 Subject: [PATCH 1/7] Changed answer to question 1 --- homework.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/homework.md b/homework.md index 1a8a59b2..c66de666 100644 --- a/homework.md +++ b/homework.md @@ -1,8 +1,9 @@ + # Linus's Homework ## 1. What is 2 + 2? -5 +4 ## 2. What is JavaScript? From 7f383e0ffdabb69025ab4eee1959cd6366a3db99 Mon Sep 17 00:00:00 2001 From: ChinweP Date: Mon, 1 Jun 2026 23:14:46 +0100 Subject: [PATCH 2/7] Added right answer to question 2 --- homework.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/homework.md b/homework.md index c66de666..bbe5e677 100644 --- a/homework.md +++ b/homework.md @@ -7,7 +7,8 @@ ## 2. What is JavaScript? -An exciting new play about coffee. +Javascript is a language that tells websites what to do. +It makes pages move, change, and react when you click things. ## 3. Name three problems Git & GitHub solve? From deee860a369e76191acfd861d2c7d726edf7cb6b Mon Sep 17 00:00:00 2001 From: ChinweP Date: Mon, 1 Jun 2026 23:18:39 +0100 Subject: [PATCH 3/7] Added answer to question 3 --- homework.md | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/homework.md b/homework.md index bbe5e677..1cf0fb7f 100644 --- a/homework.md +++ b/homework.md @@ -11,8 +11,10 @@ Javascript is a language that tells websites what to do. It makes pages move, change, and react when you click things. ## 3. Name three problems Git & GitHub solve? - -When people want to show off code to each other they can put it on GitHub +Git and Github help people to: +1. Save their work so nothing gets lost +2. Go back in time if they make a mistake +3. Work together without breaking each other's code ## 4. What happens when you `fork` a repository? From e691c521e7c9c4269811fbc5186df1fa24d82832 Mon Sep 17 00:00:00 2001 From: ChinweP Date: Mon, 1 Jun 2026 23:22:01 +0100 Subject: [PATCH 4/7] Added answer to question 4 --- homework.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/homework.md b/homework.md index 1cf0fb7f..824eed07 100644 --- a/homework.md +++ b/homework.md @@ -18,7 +18,7 @@ Git and Github help people to: ## 4. What happens when you `fork` a repository? -You delete it +When you fork a repository you are making your own copy of someone else's project so you can work on it. ## 5. What happens when you clone a repository? From 42546101633e919d44420aef72a85a9f931db420 Mon Sep 17 00:00:00 2001 From: ChinweP Date: Mon, 1 Jun 2026 23:25:40 +0100 Subject: [PATCH 5/7] Improved answer to question 5 --- homework.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/homework.md b/homework.md index 824eed07..5ed154d4 100644 --- a/homework.md +++ b/homework.md @@ -22,7 +22,7 @@ When you fork a repository you are making your own copy of someone else's projec ## 5. What happens when you clone a repository? -It send it to a friend +When you clone a repository it means you are downloading the project onto your computer so you can work on it ## 6. What is a Pull Request? From ee99890682d8daed677fc498a2cb29a001fad41a Mon Sep 17 00:00:00 2001 From: ChinweP Date: Mon, 1 Jun 2026 23:34:45 +0100 Subject: [PATCH 6/7] Improved answer to question 6 --- homework.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/homework.md b/homework.md index 5ed154d4..2d2122e6 100644 --- a/homework.md +++ b/homework.md @@ -26,4 +26,5 @@ When you clone a repository it means you are downloading the project onto your c ## 6. What is a Pull Request? -When you send a file over the internet +A pull request is when you ask the project owner to review your changes made to the project and if they like the changes to add it to the main project + From 734d069dea6aa7c1374135cbade57c86081ebacc Mon Sep 17 00:00:00 2001 From: ChinweP Date: Mon, 1 Jun 2026 23:51:49 +0100 Subject: [PATCH 7/7] Added more explanation to question 6 --- homework.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/homework.md b/homework.md index 2d2122e6..59820c5d 100644 --- a/homework.md +++ b/homework.md @@ -26,5 +26,5 @@ When you clone a repository it means you are downloading the project onto your c ## 6. What is a Pull Request? -A pull request is when you ask the project owner to review your changes made to the project and if they like the changes to add it to the main project +A Pull Request is a request for someone to check your work and approve it before it becomes part of the main project.