MCPcopy Index your code
hub / github.com/git/git / diff_tree_paths

Function diff_tree_paths

tree-diff.c:579–587  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

577}
578
579struct combine_diff_path *diff_tree_paths(
580 const struct object_id *oid,
581 const struct object_id **parents_oid, int nparent,
582 struct strbuf *base, struct diff_options *opt)
583{
584 struct combine_diff_path *head = NULL, **tail = &head;
585 ll_diff_tree_paths(&tail, oid, parents_oid, nparent, base, opt, 0);
586 return head;
587}
588
589/*
590 * Does it look like the resulting diff might be due to a rename?

Callers 2

ll_diff_tree_oidFunction · 0.85
find_paths_multitreeFunction · 0.85

Calls 1

ll_diff_tree_pathsFunction · 0.85

Tested by

no test coverage detected