diff --git a/README.md b/README.md index acb927df..4442f161 100644 --- a/README.md +++ b/README.md @@ -7,5 +7,5 @@ Can you help him to fix or improve the answers to his homework? 1. You should `fork` this repository 2. Clone the repository to your computer 3. Create a branch with an appropriate name for the task you're on -3. Fix the errors in Linus's homework in `homework.md` -4. Create a Pull Request back to this repository with the correct answers. Make sure your Pull Request is created in CodeYourFuture's fork, not your personal fork. +4. Fix the errors in Linus's homework in `homework.md` +5. Create a Pull Request back to this repository with the correct answers. Make sure your Pull Request is created in CodeYourFuture's fork, not your personal fork. \ No newline at end of file diff --git a/homework.md b/homework.md index f7a8449a..3b4e78a0 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. +A programming 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 +Identifying the latest version of a project. +Preventing code conflicts when multiple people work on the same project. +Providing a secure backup of the project. ## 4. What happens when you `fork` a repository? -You delete it +You make a copy of the repository. ## 5. What happens when you clone a repository? -It send it to a friend +You essentially download the repository to your local drive. ## 6. What is a Pull Request? -When you send a file over the internet +A request to incorporate changes from a branch you were working on to the main branch.