5758596061626364656667
{ ObjectId commit = git.getRepository().resolve(commitId); if (null == commit) { throw new LocalBranchMissingException("commit " + commitId + " does not exist"); } walk = new RevWalk(git.getRepository()); walk.setRetainBody(true);
4647484950515253545556
{ ObjectId branch = repo.resolve(branchName); if (null == branch) { throw new LocalBranchMissingException(branchName + " does not exist"); } RevCommit branchCommit = walk.parseCommit(branch); return isMergedInto(git, branchCommit, baseName); }
5556575859606162636465
5859606162636465666768
5960616263646566676869