insertAndAdd(lines3);
geogig.command(CommitOp.class).setMessage("commit 6").call();
geogig.command(CheckoutOp.class).setSource("master").call();
CheckoutResult result = geogig.command(CheckoutOp.class).setSource("branch1")
.addPath("Lines/Lines.1").call();
Optional<RevTree> workTree = geogig.command(RevObjectParse.class)
.setObjectId(result.getNewTree()).call(RevTree.class);
Optional<NodeRef> nodeRef = geogig.command(FindTreeChild.class).setParent(workTree.get())
.setChildPath("Points/Points.1").call();
assertTrue(nodeRef.isPresent());