diff options
author | Vicent Marti <tanoku@gmail.com> | 2010-06-18 13:06:34 +0200 |
---|---|---|
committer | Vicent Marti <tanoku@gmail.com> | 2010-07-15 23:39:30 +0200 |
commit | 225fe21522a98075bdc18dae90ce459f797ac366 (patch) | |
tree | 16d9bd5394fcbe6cc3dd5cae5124bd8400343e10 /src/commit.c | |
parent | 40721f6b1297f2a48aeb5c9a3ac095767b1153bf (diff) | |
download | libgit2-225fe21522a98075bdc18dae90ce459f797ac366.tar.gz |
Add support for tree objects in revision pools
Commits now store pointers to their tree objects.
Tree objects now work as separate git_revpool_object
entities.
Tree objects can be loaded and parsed inedependently
from commits.
Signed-off-by: Vicent Marti <tanoku@gmail.com>
Diffstat (limited to 'src/commit.c')
-rw-r--r-- | src/commit.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/commit.c b/src/commit.c index 11f76e30..a1a5bf7f 100644 --- a/src/commit.c +++ b/src/commit.c @@ -196,8 +196,9 @@ int git_commit__parse_buffer(git_commit *commit, void *data, size_t len) if (git_commit__parse_oid(&oid, &buffer, buffer_end, "tree ") < 0) return GIT_EOBJCORRUPTED; + commit->tree = git_tree_lookup(commit->object.pool, &oid); + /* - * TODO: load tree into commit object * TODO: commit grafts! */ |