insertAndAdd(localGeogig.geogig, points1_modified);
RevCommit commit2 = localGeogig.geogig.command(CommitOp.class).call();
expectedBranch.addFirst(commit2);
// Push the commit
PushOp push = push();
push.setAll(true).call();
// verify that the remote got the commit on both branches
remoteGeogig.geogig.command(CheckoutOp.class).setSource("master").call();
Iterator<RevCommit> logs = remoteGeogig.geogig.command(LogOp.class).call();
List<RevCommit> logged = new ArrayList<RevCommit>();