return refsByPath;
}
private ImmutableMap<String, NodeRef> getRefsByPath(ObjectId repoRoot, boolean includeFeatures) {
Strategy strategy = includeFeatures ? Strategy.DEPTHFIRST : Strategy.DEPTHFIRST_ONLY_TREES;
Iterator<NodeRef> iterator = geogig.command(LsTreeOp.class)
.setReference(repoRoot.toString()).setStrategy(strategy).call();
Function<NodeRef, String> keyFunction = new Function<NodeRef, String>() {
@Override
public String apply(NodeRef input) {