diff --git a/.vscode/settings.json b/.vscode/settings.json new file mode 100644 index 0000000..30de70f --- /dev/null +++ b/.vscode/settings.json @@ -0,0 +1,3 @@ +{ + "editor.acceptSuggestionOnEnter": "on" +} \ No newline at end of file diff --git a/homework.md b/homework.md index f7a8449..9350d26 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 an interpreted language used to create interactive web aplications. It can run either on client-side in web browsers or on server-side using node.js ## 3. What three problems does Git & GitHub solve? +Git Version Control helps developer manage multiple part of a project +Git & Github supports team Colaboration which enables multiple deveolpers manage a project +Github supports off-site copy of data with easy synchronization with local copy -When people want to show off code to each other they can put it on GitHub ## 4. What happens when you `fork` a repository? -You delete it +You make a copy of the repository to your github account ## 5. What happens when you clone a repository? -It send it to a friend +You save a copy of the repository to your local machine ## 6. What is a Pull Request? -When you send a file over the internet +When you request to merge from a feature branch to a main branch