Hash :
2a884588
Author :
Date :
2010-09-21T17:17:10
Add write-back support for git_tree All the setter methods for git_tree have been added, including the setters for attributes on each git_tree_entry and methods to add/remove entries of the tree. Modified trees and trees created in-memory from scratch can be written back to the repository using git_object_write(). Signed-off-by: Vicent Marti <tanoku@gmail.com>
#ifndef INCLUDE_tree_h__
#define INCLUDE_tree_h__
#include <git/tree.h>
#include "repository.h"
#define GIT_TREE_MAX_FILENAME 255
struct git_tree_entry {
unsigned int attr;
char filename[GIT_TREE_MAX_FILENAME];
git_oid oid;
git_tree *owner;
};
struct git_tree {
git_object object;
git_tree_entry **entries;
size_t entry_count;
size_t array_size;
};
void git_tree__free(git_tree *tree);
int git_tree__parse(git_tree *tree);
int git_tree__writeback(git_tree *tree, git_odb_source *src);
#endif