Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
22 changes: 22 additions & 0 deletions answers.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,25 @@
Efrain Encarnacion 10/31/22

Your answers go here!
Please include your name and number your answers.
==================================================
### **1. Who invented Git?**
Linus Torvalds
### **2. What else is the person who invented Git famous for?**
Created Linux
### **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.**
sends your commits from local to remote repository
### **6. What is the purpose of a `.gitignore` file?**
To make sure certain files are not tracked by Git
### **7. What is a fork? Why would you want to have a fork?**
Forking takes a copy of a repository without changing original
### **8. What is a clone? How many clones can you have?**
To take a clone or copy of said repository in a new directory elsewhere
### **9. Should you put a GitHub repository inside another GitHub repository?**
You could have submodules
### **10. You can type `git status` at any time while in a git repository - true or false?**
True