diff --git a/homework.md b/homework.md index 1a8a59b2..a17fb42f 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's a programming language used to make webpages interactive. ## 3. Name three problems Git & GitHub solve? -When people want to show off code to each other they can put it on GitHub +-They help programmers work in the same project at the same time without overwriting one another's work. +-They store several versions of a project and save a lot of time and integrity. +-They save a lot of mistakes that may cause the main project a lot of issues. ## 4. What happens when you `fork` a repository? -You delete it +When you fork a repo, the project you've forked is copied onto your GitHub account and makes it your personal copy on which you can work on without worrying causing any troubles. ## 5. What happens when you clone a repository? -It send it to a friend +You download the repository to your personal machine so you can work on it locally. ## 6. What is a Pull Request? -When you send a file over the internet +It is a request made to merge your commit changes onto the main branch or the original repository.