- What is a repository?
A repository is the folder containing all of your project files and each file's version
- What is the Git command to make a copy of a repo to your laptop?
git clone "Link"
- What is the Git command to send your code to Github?
After git add. and git commit you will type: git push origin main
- What does the -m in a Git commit command mean or do?
It means a message
- 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?
It is the position that the content you're pushing was cloned from