// Create and checkout branch1
remoteGeogig.geogig.command(BranchDeleteOp.class).setName("Branch1").call();
// clone from the remote
CloneOp clone = clone();
clone.setRepositoryURL(remoteGeogig.envHome.getCanonicalPath()).setBranch("master").call();
// Make sure the local repository got all of the commits
logs = localGeogig.geogig.command(LogOp.class).setFirstParentOnly(true).call();
logged = new ArrayList<RevCommit>();
for (; logs.hasNext();) {