reading-notes

Testing this upload

What is Version Control?

A system that allows the user view and revisit previous version of their committed code.

What is cloning in Git?

Clone in git brings the repository with all the folders and files from GitHub to your local computer.

What is the command to track and stage files?

You can track and stage all files by typing:

git add *

or you can track and stage a single file (i.e if it were named filename.md) by typing:

git add filename.md

What is the command to take a snapshot of your changed files?

git commit -a

What is the command to send your changed files to Github?

git push origin master