From 9c3542fc8badc4ba94eceba37ffc95ef5e2e494a Mon Sep 17 00:00:00 2001 From: Ammad Date: Sat, 13 Sep 2025 12:18:25 +0100 Subject: [PATCH] Fix the homework errors --- homework.md | 14 ++++++++------ 1 file changed, 8 insertions(+), 6 deletions(-) diff --git a/homework.md b/homework.md index f7a8449a..685d45a6 100644 --- a/homework.md +++ b/homework.md @@ -2,24 +2,26 @@ ## 1. What is 2 + 2? -5 +4 ## 2. What is JavaScript? -An exciting new play about coffee. +It is a scripting language that enables you to create dynamically updating content, control multimedia, animate images and more. ## 3. What three problems does Git & GitHub solve? -When people want to show off code to each other they can put it on GitHub +Git is a version control system that tracks changes in a given project. The changes are stored in a series of commits and each commit represents a snapshot of the project at that time. + +GitHub is a website where people can store their git projects and collaborate with other people. ## 4. What happens when you `fork` a repository? -You delete it +It makes a copy of the repository. ## 5. What happens when you clone a repository? -It send it to a friend +It makes a local copy of the repository on your computer ## 6. What is a Pull Request? -When you send a file over the internet +It is a formal proposal to merge changes from one branch into another. In a pull request, collaborate can review and discuss the changes before it is integrated into the main codebase. It displays the differences between the content in the source branch and the content in the target branch.