From 58fd592a1944064f8750d232290b0feb1716562b Mon Sep 17 00:00:00 2001 From: Shuheda Date: Thu, 15 Jan 2026 11:54:48 +0000 Subject: [PATCH] I fixed the errors on the homework --- homework.md | 14 ++++++++------ 1 file changed, 8 insertions(+), 6 deletions(-) diff --git a/homework.md b/homework.md index f7a8449a..b61fc19c 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. +JavaScript is a coding 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 +1) Version Control (tracking chnage) +2) Collaboration between multiple developers +3) Backup and code sharing ## 4. What happens when you `fork` a repository? -You delete it +When you fork a repository, you create your own copy of someone else’s repository under your GitHub account. ## 5. What happens when you clone a repository? -It send it to a friend +You create a local copy of an existing repository,usually from a remote service like GitHub to your computer. ## 6. What is a Pull Request? -When you send a file over the internet +A pull request (PR) is a way to propose changes to a codebase and ask for them to be reviewed and merged into another branch or repository.