mirror of
https://git.proxmox.com/git/libgit2
synced 2025-05-08 18:08:11 +00:00

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>
14 lines
192 B
C
14 lines
192 B
C
#ifndef INCLUDE_tree_h__
|
|
#define INCLUDE_tree_h__
|
|
|
|
#include <git/tree.h>
|
|
#include "revobject.h"
|
|
|
|
struct git_tree {
|
|
git_revpool_object object;
|
|
};
|
|
|
|
void git_tree__free(git_tree *tree);
|
|
|
|
#endif
|