Reading: 03 Revisions and the Cloud
What is Version Control?
- Version Control is a system that allows you to revisit various versions of a file or set of files by recording changes.
What is cloning in Git?
- Creating a copy of an existing repository by using the
clone command
$ git clone https://github.com/test
What is the command to track and stage files?
- For a single file :
git add "fileName"
- For all files:
git add *
What is the command to take a snapshot of your changed files?
What is the command to send your changed files to GitHub?