From 3e2f8b3f3e37690d761866146aaaf334e9537ea7 Mon Sep 17 00:00:00 2001 From: Asanda Dunn Date: Mon, 18 May 2026 09:11:51 +0200 Subject: [PATCH] Made corrections to homework.md file --- homework.md | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/homework.md b/homework.md index 1a8a59b2..370f4a97 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. +A programming language. ## 3. Name three problems Git & GitHub solve? -When people want to show off code to each other they can put it on GitHub +Allows multiple people to work on the same project remotely. Allows you track when changes are made, see who made those changes and see what does changes are. Github also allows you to save a copy of your work in a virtual environment that allows you to access your work from any device. ## 4. What happens when you `fork` a repository? -You delete it +You make a copy of that repo, allowing you to make changes without it changing the other person's original repo. ## 5. What happens when you clone a repository? -It send it to a friend +Clone a repo is saving it to your local P.C in order to be able to work on it from there. ## 6. What is a Pull Request? -When you send a file over the internet +A pull request is basically a merge request, where you request to merge your changes to the main repository