From d1cbb3ff33f386700148edb501c60e6300092bed Mon Sep 17 00:00:00 2001 From: PatrickRusso Date: Fri, 4 Nov 2022 15:02:49 -0400 Subject: [PATCH] Add my answers to answers.txt --- answers.txt | 16 +++++++++++++--- readme.md | 18 +++++++++--------- 2 files changed, 22 insertions(+), 12 deletions(-) diff --git a/answers.txt b/answers.txt index 6b2a10f..bc4d817 100644 --- a/answers.txt +++ b/answers.txt @@ -1,3 +1,13 @@ -Your answers go here! -Please include your name and number your answers. -================================================== +Patrick Russo -- EC -- The Booleans + +1- Linus Torvalds +2- Linux operating system +3- 2005 +4- get init +5- It uploads a local repository to a remote repository. +6- A fork is a copy of a repository that I will manage. Having a fork is good because I can make changes to my repository without effecting the original. +7- +8- +9- NOO!!! +10- True + diff --git a/readme.md b/readme.md index 5aa50ac..44f4af9 100644 --- a/readme.md +++ b/readme.md @@ -151,25 +151,25 @@ By the end of this you should have: ## Quiz Questions #### 1. Who invented Git? - +Linus Torvalds #### 2. What else is the person who invented Git famous for? - +He created the Linux operating system #### 3. What year was Git invented? - +2005 #### 4. What is the git command to initialize a new repository? - +git init #### 5. In your own words, describe what the command `git push` is doing. - +It uploads a local repository to a remote repository. #### 6. What is the purpose of a `.gitignore` file? - +It tells git which files to ignore when commiting your project to the github repository. #### 7. What is a fork? Why would you want to have a fork? - +A fork is a copy of a repository that I will manage. Having a fork is good because I can make changes to my repository without effecting the original. #### 8. What is a clone? How many clones can you have? #### 9. Should you put a Github repository inside of another Github repository? - +NO!!!!! #### 10. You can type `git status` at any time while in a git repository - true or false? - +True ## Additional Resources