| Commit message (Expand) | Author | Age | Files | Lines |
* | Merge branch 'jk/free-tree-buffer' | Junio C Hamano | 2013-09-17 | 1 | -0/+8 |
|\ |
|
| * | clear parsed flag when we free tree buffersjk/free-tree-buffer | Jeff King | 2013-06-06 | 1 | -0/+8 |
* | | Merge branch 'jl/submodule-mv' | Junio C Hamano | 2013-09-09 | 1 | -2/+2 |
|\ \ |
|
| * | | checkout: convert read_tree_some to take struct pathspec | Nguyễn Thái Ngọc Duy | 2013-07-15 | 1 | -2/+2 |
| |/ |
|
* | | Convert "struct cache_entry *" to "const ..." wherever possiblend/const-struct-cache-entry | Nguyễn Thái Ngọc Duy | 2013-07-09 | 1 | -1/+1 |
|/ |
|
* | Strip namelen out of ce_flags into a ce_namelen field | Thomas Gummerer | 2012-07-11 | 1 | -3/+4 |
* | tree_entry_interesting(): give meaningful names to return values | Nguyễn Thái Ngọc Duy | 2011-10-27 | 1 | -4/+5 |
* | tree-walk.c: do not leak internal structure in tree_entry_len() | Nguyễn Thái Ngọc Duy | 2011-10-27 | 1 | -1/+1 |
* | Convert read_tree{,_recursive} to support struct pathspec | Nguyễn Thái Ngọc Duy | 2011-03-25 | 1 | -9/+4 |
* | Reimplement read_tree_recursive() using tree_entry_interesting() | Nguyễn Thái Ngọc Duy | 2011-03-25 | 1 | -95/+57 |
* | Fix off-by-one in read_tree_recursive | Johannes Schindelin | 2009-04-20 | 1 | -0/+1 |
* | Merge branch 'bs/maint-1.6.0-tree-walk-prefix' into maint | Junio C Hamano | 2009-04-18 | 1 | -2/+6 |
|\ |
|
| * | match_tree_entry(): a pathspec only matches at directory boundaries | Junio C Hamano | 2009-04-01 | 1 | -2/+6 |
* | | Drop double-semicolon in C | Junio C Hamano | 2009-02-10 | 1 | -1/+1 |
* | | tree.c: allow read_tree_recursive() to traverse gitlink entries | Lars Hjemli | 2009-02-07 | 1 | -0/+28 |
|/ |
|
* | add context pointer to read_tree_recursive() | René Scharfe | 2008-07-15 | 1 | -6/+6 |
* | Merge branch 'mk/maint-parse-careful' | Junio C Hamano | 2008-03-02 | 1 | -48/+0 |
|\ |
|
| * | Remove unused object-ref code | Martin Koegler | 2008-02-25 | 1 | -48/+0 |
* | | Make on-disk index representation separate from in-core one | Linus Torvalds | 2008-01-21 | 1 | -2/+2 |
|/ |
|
* | Optimize "diff --cached" performance. | Junio C Hamano | 2007-08-10 | 1 | -3/+66 |
* | Merge branch 'sv/objfixes' | Junio C Hamano | 2007-06-06 | 1 | -1/+6 |
|\ |
|
| * | Don't assume tree entries that are not dirs are blobs | Sam Vilain | 2007-06-06 | 1 | -1/+6 |
* | | rename dirlink to gitlink. | Martin Waitz | 2007-05-21 | 1 | -2/+2 |
|/ |
|
* | Merge branch 'lt/objalloc' | Junio C Hamano | 2007-04-21 | 1 | -6/+2 |
|\ |
|
| * | Clean up object creation to use more common code | Linus Torvalds | 2007-04-16 | 1 | -6/+2 |
* | | Teach "fsck" not to follow subproject links | Linus Torvalds | 2007-04-10 | 1 | -1/+14 |
|/ |
|
* | Initialize tree descriptors with a helper function rather than by hand. | Linus Torvalds | 2007-03-21 | 1 | -6/+3 |
* | Remove "pathlen" from "struct name_entry" | Linus Torvalds | 2007-03-21 | 1 | -4/+5 |
* | Trivial cleanup of track_tree_refs() | Linus Torvalds | 2007-03-19 | 1 | -3/+1 |
* | convert object type handling from a string to a number | Nicolas Pitre | 2007-02-27 | 1 | -3/+3 |
* | simplify inclusion of system header files. | Junio C Hamano | 2006-12-20 | 1 | -1/+0 |
* | Convert memcpy(a,b,20) to hashcpy(a,b). | Shawn Pearce | 2006-08-23 | 1 | -1/+1 |
* | Make track_tree_refs void. | David Rientjes | 2006-08-14 | 1 | -2/+1 |
* | Remove TYPE_* constant macros and use object_type enums consistently. | Linus Torvalds | 2006-07-12 | 1 | -6/+6 |
* | Add specialized object allocator | Linus Torvalds | 2006-06-19 | 1 | -1/+1 |
* | Shrink "struct object" a bit | Linus Torvalds | 2006-06-17 | 1 | -8/+8 |
* | tree_entry(): new tree-walking helper function | Linus Torvalds | 2006-05-30 | 1 | -26/+15 |
* | Remove last vestiges of generic tree_entry_list | Linus Torvalds | 2006-05-29 | 1 | -42/+0 |
* | Remove unused "zeropad" entry from tree_list_entry | Linus Torvalds | 2006-05-29 | 1 | -2/+1 |
* | Remove "tree->entries" tree-entry list from tree parser | Linus Torvalds | 2006-05-29 | 1 | -24/+57 |
* | Switch "read_tree_recursive()" over to tree-walk functionality | Linus Torvalds | 2006-05-29 | 1 | -13/+20 |
* | Make "tree_entry" have a SHA1 instead of a union of object pointers | Linus Torvalds | 2006-05-29 | 1 | -11/+14 |
* | Make "struct tree" contain the pointer to the tree buffer | Linus Torvalds | 2006-05-29 | 1 | -25/+22 |
* | Replace xmalloc+memset(0) with xcalloc. | Peter Eriksen | 2006-04-04 | 1 | -5/+2 |
* | Only use a single parser for tree objects | Daniel Barkalow | 2006-01-26 | 1 | -30/+18 |
* | [PATCH] Compilation: zero-length array declaration. | Junio C Hamano | 2006-01-07 | 1 | -1/+1 |
* | struct tree: remove unused field "parent" | Junio C Hamano | 2005-12-04 | 1 | -1/+0 |
* | ls-tree: major rewrite to do pathspec | Linus Torvalds | 2005-11-28 | 1 | -10/+24 |
* | Rework object refs tracking to reduce memory usage | Sergey Vlasov | 2005-11-15 | 1 | -1/+12 |
* | [PATCH] Add a function for getting a struct tree for an ent. | Daniel Barkalow | 2005-09-10 | 1 | -0/+21 |