-
What is a repository? repository is tracks all changes made in files like added,changed,renamed in your project.
-
What is the Git command to make a copy of a repo to your laptop?
git Clone is the command make copy files form a git repository on your PC.
- What is the Git command to send your code to Github?
git push is the command used to transfer data on your PC to Github
- What does the -m in a Git commit command mean or do?
this command used for Comments
- What is the Git command for making a commit?
git Commit command is used to take all change in your file and push in Github
- What is the Git command to put your files in the staging area?
git add command is add a change in the working directory to staging area
- What does origin stand for when pushing you code?
remote repository that a project was originally cloned from.