From 1217727f7b39c29aef3bf96603a85a8fbc050b0c Mon Sep 17 00:00:00 2001 From: mo4rahman Date: Mon, 21 Mar 2022 21:21:51 -0400 Subject: [PATCH 1/2] Add my answers to answers.txt --- answers.txt | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/answers.txt b/answers.txt index 6b2a10f..103dd40 100644 --- a/answers.txt +++ b/answers.txt @@ -1,3 +1,7 @@ Your answers go here! Please include your name and number your answers. ================================================== + +Mohammed Hasif Rahman - Water_classroom. + +1. Linus Torvalds \ No newline at end of file From 138b40eb5c1c768600c72283e8b3c2a10a7b12d8 Mon Sep 17 00:00:00 2001 From: mo4rahman Date: Tue, 22 Mar 2022 08:45:09 -0400 Subject: [PATCH 2/2] Finished github_101 --- answers.txt | 20 +++++++++++++++++++- 1 file changed, 19 insertions(+), 1 deletion(-) diff --git a/answers.txt b/answers.txt index 103dd40..7de1fa0 100644 --- a/answers.txt +++ b/answers.txt @@ -4,4 +4,22 @@ Please include your name and number your answers. Mohammed Hasif Rahman - Water_classroom. -1. Linus Torvalds \ No newline at end of file +1. Linus Torvalds. + +2. Creator and main developer of Linux. + +3. 2005 + +4. git init + +5. git push sends your local repository/code and uploads it to your repository on github/ wherever you stored your code. + +6. .gitignore files lets you ignore files you need while using/testing your code but contains secret keys or confidential information you do not wish the public to see. These files will not be pushed onto github. + +7. Fork is basically copying over someone's entire repository. You want to do this so you can edit it yourself. + +8. A clone is the next step after forking, where you make a full copy that you can edit and use. You can have as many clones as you want. + +9. Never, Never, Never put github repos in another github repo. + +10. True. \ No newline at end of file