In code below I got the following error: Could not find matching constructor for: org.eclipse.jgit.revwalk.RevWalk(org.eclipse.jgit.api.Git)
. I want to check the author last commit, if it will be John, remove that file. What is wrong?
def badAuthor = 'John'
def authorEqual() {
Git git = Git.open(new File(".git"))
RevCommit lastCommit = null;
try {
RevWalk walk = new RevWalk(git) --> HERE ERROR
RevCommit commit = walk.parseCommit(head.getObjectId());
PersonIdent aAuthort = commit.getAuthorIdent()
if(commit.getAuthorIdent().getWhen().equals(aAuthor == BadAuthor).compareTo(
lastCommit.getAuthorIdent().getWhen()) > 0)
lastCommit = commit
println commit
git.rm.call()
}
finally {
println "Commit ok"
}
}
authorEqual()
As you can see in the docs
RevWalk
accepts an instance ofRepository
in constructor.Repository
can be obtained fromGit
instance, have a look here.