Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 14 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,33 +1,45 @@
# Git Quiz



---

1. What is a repository?

<!-- Write your answer under here -->

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?

<!-- Write your answer under here -->

git clone and the link

3. What is the Git command to send your code to Github?

<!-- Write your answer under here -->

git push link then branch name or main

4. What does the -m in a Git commit command mean or do?

<!-- Write your answer here -->

its a message that describes the changes you have made to that file.

5. What is the Git command for making a commit?

<!-- Write your answer here -->

git commit -m and the message

6. What is the Git command to put your files in the staging area?

<!-- Write your answer here -->

git add (.)for all or the name of the file

7. What does origin stand for when pushing you code?

<!-- Write your answer here -->

it means the link of github repo to which you want to store your files.