Jgit:Bare 存储库既没有工作树,也没有索引

Jgit:Bare Repository has neither a working tree, nor an index

我在 E 中创建了一个名为 gitrepo 的目录,完整路径为 (E:\gitrepo) 然后我使用以下代码在其中克隆了一个存储库

Git git=Git.cloneRepository()
                .setURI("samplelink.git")
                .setDirectory(new File("/E:/gitrepo"))
                .call();

然后我使用此代码打开了一个存储库

public Repository openRepository() throws IOException {
    FileRepositoryBuilder builder = new FileRepositoryBuilder();

    Repository repository = builder.setGitDir(new File("/E:/gitrepo"))
            .readEnvironment() // scan environment GIT_* variables
            .findGitDir() // scan up the file system tree
            .build();
     log.info("Repository directory is {}", repository.getDirectory());

    return repository;
}

到这里为止一切正常 然后我尝试在此本地存储库中添加一个文件

Repository repo = openRepository();
            Git git = new Git(repo);
            File myfile = new File(repo.getDirectory()/*.getParent()*/, "testfile");
            if (!myfile.createNewFile()) {
                throw new IOException("Could not create file " + myfile);
            }
            log.info("file created at{}", myfile.getPath());
            git.add().addFilepattern("testfile").call();

然后我在这条线上遇到了异常

git.add().addFilepattern("testfile").call();

这里是例外

Exception in thread "main" org.eclipse.jgit.errors.NoWorkTreeException: Bare Repository has neither a working tree, nor an index
    at org.eclipse.jgit.lib.Repository.getIndexFile(Repository.java:1147)
    at org.eclipse.jgit.dircache.DirCache.lock(DirCache.java:294)
    at org.eclipse.jgit.lib.Repository.lockDirCache(Repository.java:1205)
    at org.eclipse.jgit.api.AddCommand.call(AddCommand.java:149)
    at com.km.GitAddFile.addFile(GitAddFile.java:26)

虽然在 E:\gitrepo 中创建的文件代码 我已经通过这个命令检查了 gitrepo 是非裸存储库

/e/gitrepo (master)
$ git rev-parse --is-bare-repository 

及其返回 false

请帮忙解决这个异常

使用 FileRepositoryBuilder 打开 Git 存储库很棘手。这是一个内部 class。它的方法 setGitDir(File) 定义了存储库元数据的位置(.git 文件夹)。换句话说,它用于构建一个 Git 裸存储库。您可以通过调用 Repository#isBare():

来证明这一点
Repository repository = builder.setGitDir(new File("/E:/gitrepo"))
        .readEnvironment() // scan environment GIT_* variables
        .findGitDir() // scan up the file system tree
        .build();
repository.isBare(); // returns true

您应该将此用法替换为 Git#open(File):

try (Git git = Git.open(new File("/E:/gitrepo"))) {
    // Do sth ...
}