From 8f01a9f68444d6830352f83095be1ecaeee51905 Mon Sep 17 00:00:00 2001 From: Abdalla-10 Date: Sun, 16 Oct 2022 22:05:13 +0300 Subject: [PATCH] q3 --- README.md => README.txt | 19 ++++++++----------- 1 file changed, 8 insertions(+), 11 deletions(-) rename README.md => README.txt (53%) diff --git a/README.md b/README.txt similarity index 53% rename from README.md rename to README.txt index b4ae1c4..8a2a885 100644 --- a/README.md +++ b/README.txt @@ -1,33 +1,30 @@ # Git Quiz - ---- - 1. What is a repository? - +A repository contains all of your project's files 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? + to create commit - 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? - +7. its a remote name + Abdalla-10