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
14 changes: 7 additions & 7 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,28 +6,28 @@

1. What is a repository?

<!-- Write your answer under here -->
<!-- Repository is like a folder that holds you all files of your projects and also tracks all changes that you made i the projects , for example if you created a repo ,and created a files inside your repo and then deleted , so you deleted all your history of that file , another way repository holds all your history and changes that made your project , that is it. -->

2. What is the Git command to make a copy of a repo to your laptop?

<!-- Write your answer under here -->
<!-- the git command i make a copy ofa repo to my laptop is "git clone <link of the repository > "-->

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

<!-- Write your answer under here -->
<!-- It is a git push origin main -->

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

<!-- Write your answer here -->
<!--I think -m stands when you adding all of the changes that have been made locally. -->

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

<!-- Write your answer here -->
<!-- it is a git commit -m "---message---"-->

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

<!-- Write your answer here -->
<!--it's "git add" -->

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

<!-- Write your answer here -->
<!-- Origin is a shortcut name for the remote repository that a project was originally cloned or copied from. -->