From 65b916fe07066c54fa3b576732534257a99fd054 Mon Sep 17 00:00:00 2001 From: Asma mohamed <67588350+asma-ux@users.noreply.github.com> Date: Wed, 19 Oct 2022 10:10:59 -0700 Subject: [PATCH] Quiz is done --- README.md | 16 +++++++--------- 1 file changed, 7 insertions(+), 9 deletions(-) diff --git a/README.md b/README.md index b4ae1c4..c578f2e 100644 --- a/README.md +++ b/README.md @@ -1,33 +1,31 @@ # Git Quiz - - --- 1. What is a repository? - +repository is like a folder, where data is kept. 2. What is the Git command to make a copy of a repo to your laptop? - +git clone 3. What is the Git command to send your code to Github? - +git push origin main 4. What does the -m in a Git commit command mean or do? - +message 5. What is the Git command for making a commit? - +git commit -m 6. What is the Git command to put your files in the staging area? - +git add . 7. What does origin stand for when pushing you code? - +it stands for the place I want to push my code.