This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
############## details ################ | |
============== structure ================ | |
repository | |
a tree of objects which are under version control | |
objects are any of the following: | |
blob: binary data (usually a file) | |
tree: points to blobs (files) and other trees (subdirectories) | |
commit: points to a tree (your projects root directory), and points to the parent commit(s) | |