From 84a25e8d28616173363cc1b33814e3d60df005cc Mon Sep 17 00:00:00 2001 From: zadri abdule Date: Wed, 4 Jun 2025 13:13:19 +0100 Subject: [PATCH 1/6] Fix: Correct answer to qustion 1 (2 + 2 = 4) --- homework.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/homework.md b/homework.md index f7a8449a..30b8a98e 100644 --- a/homework.md +++ b/homework.md @@ -2,7 +2,7 @@ ## 1. What is 2 + 2? -5 +4 ## 2. What is JavaScript? From 369eadf497a6146400aec0bc7b05e6019b4e39b2 Mon Sep 17 00:00:00 2001 From: zadri abdule Date: Wed, 4 Jun 2025 13:19:26 +0100 Subject: [PATCH 2/6] Fix: Add correct definition of JavaScript (question 2) --- homework.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/homework.md b/homework.md index 30b8a98e..ce968acd 100644 --- a/homework.md +++ b/homework.md @@ -6,7 +6,7 @@ ## 2. What is JavaScript? -An exciting new play about coffee. +JavaScript is a programming language used to make websites interactive. ## 3. What three problems does Git & GitHub solve? From dc46071dadf08874eca80d35d17edbc2b79a4c5f Mon Sep 17 00:00:00 2001 From: zadri abdule Date: Wed, 4 Jun 2025 13:26:43 +0100 Subject: [PATCH 3/6] Fix: List three correct problems Git/GitHub solve (question 3) --- homework.md | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/homework.md b/homework.md index ce968acd..4c199e2d 100644 --- a/homework.md +++ b/homework.md @@ -10,7 +10,9 @@ JavaScript is a programming language used to make websites interactive. ## 3. What three problems does Git & GitHub solve? -When people want to show off code to each other they can put it on GitHub ++ 1. Version control ++ 2. Collaboration ++ 3. Backing up and sharing code online ## 4. What happens when you `fork` a repository? From 5031849c50eece28b8bdf4a0333ae353464bb36e Mon Sep 17 00:00:00 2001 From: zadri abdule Date: Wed, 4 Jun 2025 13:32:37 +0100 Subject: [PATCH 4/6] Fix: Correct definition of forking a repository ( question 4) --- homework.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/homework.md b/homework.md index 4c199e2d..516166c9 100644 --- a/homework.md +++ b/homework.md @@ -16,7 +16,7 @@ JavaScript is a programming language used to make websites interactive. ## 4. What happens when you `fork` a repository? -You delete it +You make a copy of the repository on your GitHub account so you can edit it without affecting the original. ## 5. What happens when you clone a repository? From 985cd5fc1701be9d74ae08cac16982f6d101a4df Mon Sep 17 00:00:00 2001 From: zadri abdule Date: Wed, 4 Jun 2025 13:37:05 +0100 Subject: [PATCH 5/6] Fix: Correct definition of cloning a repository ( question 5 ) --- homework.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/homework.md b/homework.md index 516166c9..0ad00e72 100644 --- a/homework.md +++ b/homework.md @@ -20,7 +20,7 @@ You make a copy of the repository on your GitHub account so you can edit it with ## 5. What happens when you clone a repository? -It send it to a friend +You download a copy of the GitHub repository to your own computer. ## 6. What is a Pull Request? From c904a91a7e940b859a665d3bd66d4dcfe61d930f Mon Sep 17 00:00:00 2001 From: zadri abdule Date: Wed, 4 Jun 2025 13:41:28 +0100 Subject: [PATCH 6/6] Fix: Correct definition of a Pull Request ( question 6 ) --- homework.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/homework.md b/homework.md index 0ad00e72..1fb3fbd1 100644 --- a/homework.md +++ b/homework.md @@ -24,4 +24,4 @@ You download a copy of the GitHub repository to your own computer. ## 6. What is a Pull Request? -When you send a file over the internet +A Pull Request is a way to suggest changes to a repository for review and merging.