A system that allows the user view and revisit previous version of their committed code.
Clone in git brings the repository with all the folders and files from GitHub to your local computer.
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
git commit -a
git push origin master