Add http and local transport support for git-pull-script.
[git.git] / tree.h
blobe1c94c090c8d73268176e8f1ca97f4949cb537df
1 #ifndef TREE_H
2 #define TREE_H
4 #include "object.h"
6 extern const char *tree_type;
8 struct tree_entry_list {
9 struct tree_entry_list *next;
10 unsigned directory : 1;
11 unsigned executable : 1;
12 unsigned symlink : 1;
13 unsigned int mode;
14 char *name;
15 union {
16 struct tree *tree;
17 struct blob *blob;
18 } item;
21 struct tree {
22 struct object object;
23 struct tree_entry_list *entries;
26 struct tree *lookup_tree(unsigned char *sha1);
28 int parse_tree(struct tree *tree);
30 #endif /* TREE_H */