From 29a52c59d37f5ac0abfdff65455e7edcc2d85bef Mon Sep 17 00:00:00 2001 From: Abdi7k Date: Wed, 12 Oct 2022 11:58:31 +0300 Subject: [PATCH] Exercise3 Done --- README.md | 15 ++++++++------- 1 file changed, 8 insertions(+), 7 deletions(-) diff --git a/README.md b/README.md index b4ae1c4..7c3a121 100644 --- a/README.md +++ b/README.md @@ -6,28 +6,29 @@ 1. What is a repository? - +A repository is the folder containing all of your project files and each file's version 2. What is the Git command to make a copy of a repo to your laptop? - +git clone "Link" 3. What is the Git command to send your code to Github? - +After git add. and git commit you will type: +git push origin main 4. What does the -m in a Git commit command mean or do? - +It means a 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 is the position that the content you're pushing was cloned from