pub fn ls_tree_recursive(
root: &Path,
tree: &str,
) -> Result<Vec<GitTreeEntry>, Error>Expand description
git ls-tree -r -z <tree> → recursive entries (deterministic order:
git’s own tree order; the caller sorts by path where order matters).