jGit constructor error

68 Views Asked by At

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()
1

There are 1 best solutions below

0
On BEST ANSWER

As you can see in the docs RevWalk accepts an instance of Repository in constructor. Repository can be obtained from Git instance, have a look here.