View on GitHub

reading-notes

My learning journal for Code Fellows

Git and You

Version Control

A system that tracks changes done to a file, so users can not only edit the current version, but examine prior versions as well. This is made possible with a series of snapshots. As the files are committed, a snapshot is taken of the file.

Stages of Git Files

Within the system there are three states that files can be: Modified, Committed and Staged

Workflow

As files begin to be manipulated by the user into stages of commitment, a workflow emerges, shown here below:

Workflow image

Once introduced into a file into the system it enters a loop of sorts, starting at: Consistent from the last snapshot → being modified by the user → the user staging the modified file, which then puts it in the newest snapshot → bringing the file finally back to being consistent with the most recent snapshot

Git Status, My Hero and Yours

To check the status of the files within your system, simply use the lifeguard command of the Git system: git status.

Git status allows the user to track where all modified files are in terms of their position in the workflow. Once the user knows the status of the files, specifically the modified ones, they can…

Add, commit and push the files to incorporate them into the newest snapshot

Back to main page