From 93679b27b0eca562415a079f6043d8a256a2dd04 Mon Sep 17 00:00:00 2001 From: nahom Date: Tue, 20 May 2025 16:13:31 +0000 Subject: [PATCH] fixed homework --- homework.md | 16 ++++++++++------ 1 file changed, 10 insertions(+), 6 deletions(-) diff --git a/homework.md b/homework.md index f7a8449a..ddaa6e93 100644 --- a/homework.md +++ b/homework.md @@ -2,24 +2,28 @@ ## 1. What is 2 + 2? -5 +4 ## 2. What is JavaScript? -An exciting new play about coffee. +JavaScript is a scripting or programming language that allows you to implement complex features on web pages ## 3. What three problems does Git & GitHub solve? -When people want to show off code to each other they can put it on GitHub +Version Tracking – Git lets you track and revert code changes. + +Team Collaboration – GitHub helps teams work on code together without conflicts. + +Backup & Sharing – GitHub stores code online for easy access, sharing, and backup. ## 4. What happens when you `fork` a repository? -You delete it +When you fork a repository, you create a copy of it under your GitHub account. This lets you freely make changes without affecting the original project. ## 5. What happens when you clone a repository? -It send it to a friend +When you clone a repository, you make your own local copy of the repository ## 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 repository. You submit your changes for review, and the project maintainers can approve, discuss, or request edits before merging them into the main codebase. \ No newline at end of file