diff options
| author | Kit La Touche <klatouche@sensoryinc.com> | 2015-12-11 13:17:22 -0700 |
|---|---|---|
| committer | Kit La Touche <klatouche@sensoryinc.com> | 2015-12-11 13:39:48 -0700 |
| commit | 7c361d22140e526f9c047803c9e339223dc9013d (patch) | |
| tree | d3cee4d51e764babe352bbe7e7c990e38dd1a219 | |
| parent | f82d259e7bda843fb63ac1a0f6ff1d6bfb187099 (diff) | |
Fixed over-indented lists.
Markdown'll bite you if you're not careful. Four leading spaces is a
<pre> block.
| -rw-r--r-- | wiki/git/theory-and-practice/objects.md | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/wiki/git/theory-and-practice/objects.md b/wiki/git/theory-and-practice/objects.md index 1ad3f26..6bf975a 100644 --- a/wiki/git/theory-and-practice/objects.md +++ b/wiki/git/theory-and-practice/objects.md @@ -52,12 +52,12 @@ Blobs and trees are sufficient to store arbitrary directory trees in Git, and you could use them that way, but Git is mostly used as a revision-tracking system. Revisions and their history are represented by `commit` objects, which contain: - * The SHA-1 hash of the root `tree` object of the commit, - * Zero or more SHA-1 hashes for parent commits, - * The name and email address of the commit's “author,” - * The name and email address of the commit's “committer,” - * Timestamps representing when the commit was authored and committed, and - * A commit message. +* The SHA-1 hash of the root `tree` object of the commit, +* Zero or more SHA-1 hashes for parent commits, +* The name and email address of the commit's “author,” +* The name and email address of the commit's “committer,” +* Timestamps representing when the commit was authored and committed, and +* A commit message. Commit objects' parent references form a directed acyclic graph; the subgraph reachable from a specific commit is that commit's _history_. @@ -72,10 +72,10 @@ specific configurations. It also, uniquely, supports a concept called an “annotated tag,” represented by the `tag` object type. These annotated tag objects contain - * The type and SHA-1 hash of another object, - * The name and email address of the person who created the tag, - * A timestamp representing the moment the tag was created, and - * A tag message. +* The type and SHA-1 hash of another object, +* The name and email address of the person who created the tag, +* A timestamp representing the moment the tag was created, and +* A tag message. ## Anonymity |
