View on GitHub

reading-notes-102

Reading notes from 102

Reading Notes 03

Git Review

Git is a version control system that lets you to work on a local copy of a project, then you sync it.

Here are some key Commands:

Git stores files in three different ways.

  1. Modified, meaning the file has been changed or edited but not committed.
  2. Staged, which means the file is flagged as ready to be committed.
  3. Committed. This means the file is stored in a local database.