Skip to content
Open

q3 #21

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
19 changes: 8 additions & 11 deletions README.md → README.txt
Original file line number Diff line number Diff line change
@@ -1,33 +1,30 @@
# Git Quiz



---

1. What is a repository?

<!-- Write your answer under here -->
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

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

3. What is the Git command to send your code to Github?
git push origin main

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

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

<!-- Write your answer here -->

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

<!-- Write your answer here -->

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

<!-- Write your answer here -->

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

<!-- Write your answer here -->
7. its a remote name
Abdalla-10