diff options
| author | Owen Jacobson <owen.jacobson@grimoire.ca> | 2015-12-31 11:44:55 -0500 |
|---|---|---|
| committer | Owen Jacobson <owen.jacobson@grimoire.ca> | 2015-12-31 11:44:55 -0500 |
| commit | 262d96ed8bae0767334d629fb0abae2b457299bd (patch) | |
| tree | d3cee4d51e764babe352bbe7e7c990e38dd1a219 /wiki/git | |
| parent | f82d259e7bda843fb63ac1a0f6ff1d6bfb187099 (diff) | |
| parent | 7c361d22140e526f9c047803c9e339223dc9013d (diff) | |
Merge remote-tracking branch 'wlonk/list-fix'
Diffstat (limited to 'wiki/git')
| -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 |
