From c802e6cdc5ee38e382fffe9bce60e526a8851944 Mon Sep 17 00:00:00 2001 From: Abdilahi mohamed Date: Tue, 11 Oct 2022 17:13:51 +0300 Subject: [PATCH 1/2] answered quiz questions --- README.md | 16 ++++++---------- 1 file changed, 6 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index b4ae1c4..0c113b3 100644 --- a/README.md +++ b/README.md @@ -1,7 +1,5 @@ # Git Quiz - - --- 1. What is a repository? @@ -10,24 +8,22 @@ 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? - - -4. What does the -m in a Git commit command mean or do? +" git push " 4. What does the -m in a Git commit command mean or do? - +" m means a comment that descripes what you want to commit " 5. What is the Git command for making a commit? - +" git commit " 6. What is the Git command to put your files in the staging area? - +" git add : u can use dot notation for all or specific folder name " 7. What does origin stand for when pushing you code? - + " origin means the link of my repository " From efd75e65f6c2a36ff76fa58e4d76e6617029ba30 Mon Sep 17 00:00:00 2001 From: Abdilahi mohamed Date: Tue, 11 Oct 2022 17:16:17 +0300 Subject: [PATCH 2/2] missed the first question --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 0c113b3..3d6590e 100644 --- a/README.md +++ b/README.md @@ -4,7 +4,7 @@ 1. What is a repository? - +" a place or folder that you can store your files " 2. What is the Git command to make a copy of a repo to your laptop?