Pro Git
Rate it:
Open Preview
Kindle Notes & Highlights
Read between December 27, 2017 - April 21, 2018
10%
Flag icon
Git thinks of its data more like a set of snapshots of a miniature filesystem. Every time you commit, or save the state of your project in Git, it basically takes a picture of what all your files look like at that moment and stores a reference to that snapshot.
10%
Flag icon
Git has three main states that your files can reside in: committed, modified, and staged. Committed means that the data is safely stored in your local database. Modified means that you have changed the file but have not committed it to your database yet. Staged means that you have marked a modified file in its current version to go into your next commit snapshot.
10%
Flag icon
The working directory is a single checkout of one version of the project.
10%
Flag icon
The staging area is a file, generally contained in your Git directory, that stores information about what will go into your next commit.
11%
Flag icon
If the manpages and this book aren’t enough and you need in-person help, you can try the #git or #github channel on the Freenode IRC server (irc.freenode.net).