diff --git a/git homework.md b/git homework.md new file mode 100644 index 00000000..77ba3aea --- /dev/null +++ b/git homework.md @@ -0,0 +1,26 @@ +# Linus's Homework + +## 1. What is 2 + 2? + + 4 + +## 2. What is JavaScript? + + An object-oriented computer programming language commonly used to creat interactive effects within web browsers. + +## 3. What three problems does Git & GitHub solve? + + Enabling collaboration, Version control, and streamlined workflows. + +## 4. What happens when you `fork` a repository? + + forking a repository means you can make any changes you want to the code without affecting the original project. +## 5. What happens when you clone a repository? + + + Cloning a repository pulls down a full copy of all the repository that GitHub.com has at that point in time,including all versions of every file + and folder for the project. + +## 6. What is a Pull Request? + + A pull request is a proposal to merge a set of changes from one branch into another.