- What is a repository?
is location either real or virtual where data is stored
- What is the Git command to make a copy of a repo to your laptop? git clone
-
What is the Git command to send your code to Github?
git push origin main
-
What does the -m in a Git commit command mean or do?
the -m stands for message when calling git commit it is required to include amessage
-
What is the Git command for making a commit?
git commit -m ""
-
What is the Git command to put your files in the staging area?
git add .
-
What does origin stand for when pushing you code?
the origin represents aremoute name where the user wants to push the changes