From a11684251ac6e278759740911792a4161d7ff504 Mon Sep 17 00:00:00 2001 From: hamda Date: Fri, 14 Oct 2022 00:26:30 +0300 Subject: [PATCH 1/2] finished the quiz --- README.md | 16 ++++++++++++++-- 1 file changed, 14 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index b4ae1c4..a13d3e2 100644 --- a/README.md +++ b/README.md @@ -1,33 +1,45 @@ # Git Quiz - - --- 1. What is a repository? +It's a folder where all your files of a project is stored. + 2. What is the Git command to make a copy of a repo to your laptop? +git clone and the link + 3. What is the Git command to send your code to Github? +git push link then branch name or main + 4. What does the -m in a Git commit command mean or do? +its a message that describes the changes you have made to that file. + 5. What is the Git command for making a commit? +git commit -m and the message + 6. What is the Git command to put your files in the staging area? +git add (.)for all or the name of the file + 7. What does origin stand for when pushing you code? + +it means the link of github to which you want to store your files. From 40d8a5539a80776c20476607e5416ade29dbffb9 Mon Sep 17 00:00:00 2001 From: hamda Date: Fri, 14 Oct 2022 00:27:38 +0300 Subject: [PATCH 2/2] finished the quiz --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index a13d3e2..a0df54b 100644 --- a/README.md +++ b/README.md @@ -42,4 +42,4 @@ git add (.)for all or the name of the file -it means the link of github to which you want to store your files. +it means the link of github repo to which you want to store your files.