Age | Commit message (Expand) | Author | Files | Lines |
2015-03-13 | diff: convert struct combine_diff_path to object_id | brian m. carlson | 1 | -5/+5 |
2014-04-07 | tree-diff: rework diff_tree() to generate diffs for multiparent cases as well | Kirill Smelkov | 1 | -64/+440 |
2014-03-27 | tree-diff: reuse base str(buf) memory on sub-tree recursion | Kirill Smelkov | 1 | -19/+19 |
2014-03-27 | tree-diff: no need to call "full" diff_tree_sha1 from show_path() | Kirill Smelkov | 1 | -2/+6 |
2014-03-27 | tree-diff: rework diff_tree interface to be sha1 based | Kirill Smelkov | 1 | -32/+28 |
2014-03-26 | tree-diff: diff_tree() should now be static | Kirill Smelkov | 1 | -2/+2 |
2014-03-26 | tree-diff: remove special-case diff-emitting code for empty-tree cases | Kirill Smelkov | 1 | -12/+14 |
2014-03-20 | tree-diff: simplify tree_entry_pathcmp | Kirill Smelkov | 1 | -11/+6 |
2014-03-20 | tree-diff: show_path prototype is not needed anymore | Kirill Smelkov | 1 | -3/+0 |
2014-03-20 | tree-diff: rename compare_tree_entry -> tree_entry_pathcmp | Kirill Smelkov | 1 | -6/+9 |
2014-03-20 | tree-diff: move all action-taking code out of compare_tree_entry() | Kirill Smelkov | 1 | -16/+12 |
2014-03-20 | tree-diff: don't assume compare_tree_entry() returns -1,0,1 | Kirill Smelkov | 1 | -8/+14 |
2014-03-20 | tree-diff: consolidate code for emitting diffs and recursion in one place | Kirill Smelkov | 1 | -30/+82 |
2014-03-04 | tree-diff: show_tree() is not needed | Kirill Smelkov | 1 | -32/+3 |
2014-02-24 | tree-diff: no need to pass match to skip_uninteresting() | Kirill Smelkov | 1 | -9/+8 |
2014-02-24 | tree-diff: no need to manually verify that there is no mode change for a path | Kirill Smelkov | 1 | -10/+5 |
2014-02-05 | tree-diff: convert diff_root_tree_sha1() to just call diff_tree_sha1 with old... | Kirill Smelkov | 1 | -14/+1 |
2014-02-05 | tree-diff: allow diff_tree_sha1 to accept NULL sha1 | Kirill Smelkov | 1 | -8/+4 |
2013-10-28 | pathspec: stop --*-pathspecs impact on internal parse_pathspec() uses | Nguyễn Thái Ngọc Duy | 1 | -1/+3 |
2013-07-15 | pathspec: support :(literal) syntax for noglob pathspec | Nguyễn Thái Ngọc Duy | 1 | -1/+1 |
2013-07-15 | tree-diff: remove the use of pathspec's raw[] in follow-rename codepath | Nguyễn Thái Ngọc Duy | 1 | -2/+2 |
2013-07-15 | remove init_pathspec() in favor of parse_pathspec() | Nguyễn Thái Ngọc Duy | 1 | -5/+5 |
2013-07-15 | remove diff_tree_{setup,release}_paths | Nguyễn Thái Ngọc Duy | 1 | -14/+4 |
2013-07-15 | guard against new pathspec magic in pathspec matching code | Nguyễn Thái Ngọc Duy | 1 | -0/+19 |
2013-07-15 | parse_pathspec: add special flag for max_depth feature | Nguyễn Thái Ngọc Duy | 1 | -1/+0 |
2012-08-27 | Merge branch 'jk/maint-null-in-trees' | Junio C Hamano | 1 | -4/+4 |
2012-08-03 | diff_setup_done(): return void | Thomas Rast | 1 | -2/+1 |
2012-07-29 | diff: do not use null sha1 as a sentinel value | Jeff King | 1 | -4/+4 |
2011-12-16 | use custom rename score during --follow | Jeff King | 1 | -0/+1 |
2011-10-27 | tree_entry_interesting(): give meaningful names to return values | Nguyễn Thái Ngọc Duy | 1 | -7/+9 |
2011-10-27 | tree-walk.c: do not leak internal structure in tree_entry_len() | Nguyễn Thái Ngọc Duy | 1 | -3/+3 |
2011-06-06 | Merge branch 'jk/diff-not-so-quick' | Junio C Hamano | 1 | -2/+1 |
2011-05-31 | diff: futureproof "stop feeding the backend early" logic | Junio C Hamano | 1 | -3/+1 |
2011-05-31 | diff_tree: disable QUICK optimization with diff filter | Jeff King | 1 | -0/+1 |
2011-05-06 | Merge branch 'nd/struct-pathspec' | Junio C Hamano | 1 | -33/+20 |
2011-03-25 | Improve tree_entry_interesting() handling code | Nguyễn Thái Ngọc Duy | 1 | -33/+20 |
2011-03-22 | Remove unused variables | Johannes Schindelin | 1 | -2/+1 |
2011-02-03 | grep: drop pathspec_matches() in favor of tree_entry_interesting() | Nguyễn Thái Ngọc Duy | 1 | -2/+2 |
2011-02-03 | tree_entry_interesting(): support depth limit | Nguyễn Thái Ngọc Duy | 1 | -0/+4 |
2011-02-03 | diff-tree: convert base+baselen to writable strbuf | Nguyễn Thái Ngọc Duy | 1 | -68/+52 |
2011-02-03 | Move tree_entry_interesting() to tree-walk.c and export it | Nguyễn Thái Ngọc Duy | 1 | -112/+0 |
2011-02-03 | tree_entry_interesting(): remove dependency on struct diff_options | Nguyễn Thái Ngọc Duy | 1 | -16/+10 |
2011-02-03 | Convert struct diff_options to use struct pathspec | Nguyễn Thái Ngọc Duy | 1 | -35/+13 |
2010-10-26 | Merge branch 'en/tree-walk-optim' | Junio C Hamano | 1 | -14/+15 |
2010-08-26 | diff_tree(): Skip skip_uninteresting() when all remaining paths interesting | Elijah Newren | 1 | -13/+12 |
2010-08-26 | tree_entry_interesting(): Make return value more specific | Elijah Newren | 1 | -1/+1 |
2010-08-26 | Document pre-condition for tree_entry_interesting | Elijah Newren | 1 | -0/+2 |
2010-08-13 | diff --follow: do call diffcore_std() as necessary | Junio C Hamano | 1 | -0/+11 |
2010-08-13 | diff --follow: do not waste cycles while recursing | Junio C Hamano | 1 | -1/+1 |
2010-05-07 | Make git log --follow find copies among unmodified files. | Bo Yang | 1 | -1/+1 |