0

无法修复的错误。它嵌入到不同的操作系统如何允许文件名中的字符。目前在 JGit 或 Git 中找不到解决方案。

当我尝试运行 Git.cloneRepository() 时,我收到文件、目录名称或卷标签的语法错误。这已经开始突然出现,而我的这个软件没有任何代码更改。

杰瑞:1.7

我使用的代码:

private void cloneCommit() throws Exception {
  try {
    File mineDir = new File(m_target, this.m_name);

    if (!mineDir.exists()) {
      mineDir.mkdir();
      mineDir.setWritable(true);
      mineDir.setExecutable(true);
    }               

    Git g = null;

    WindowCacheConfig cfg = new WindowCacheConfig();
    cfg.setPackedGitMMAP(false);
    WindowCache.reconfigure(cfg);

    g = Git.cloneRepository()
        .setURI(m_localUri)
        .setDirectory(mineDir)
        .call();

    g.reset().setRef(this.m_current.getName()).setMode(ResetType.HARD).call();

    GlobalMessages.commitPulled(this.m_i, this.m_current.getName());

    g.getRepository().close();

    m_runningThreads--;

  } catch (Exception e) {
    errorHandlingMining(e, this.m_current);
  }
}

错误信息:

org.eclipse.jgit.api.errors.JGitInternalException: Incorrect syntax for file name, directory name or volume label
  at org.eclipse.jgit.api.CloneCommand.call(CloneCommand.java:130)
  at se.lnu.cs.doris.git.GitRepository$Cloner.cloneCommit(GitRepository.java:423)
  at se.lnu.cs.doris.git.GitRepository$Cloner.guardedCloner(GitRepository.java:446)
  at se.lnu.cs.doris.git.GitRepository$Cloner.run(GitRepository.java:440)
  at java.lang.Thread.run(Unknown Source)
Caused by: java.io.IOException: Incorrect syntax for file name, directory name or volume label
  at java.io.WinNTFileSystem.createFileExclusively(Native Method)
  at java.io.File.createTempFile(Unknown Source)
  at org.eclipse.jgit.dircache.DirCacheCheckout.checkoutEntry(DirCacheCheckout.java:968)
  at org.eclipse.jgit.dircache.DirCacheCheckout.doCheckout(DirCacheCheckout.java:457)
  at org.eclipse.jgit.dircache.DirCacheCheckout.checkout(DirCacheCheckout.java:391)
  at org.eclipse.jgit.api.CloneCommand.checkout(CloneCommand.java:229)
  at org.eclipse.jgit.api.CloneCommand.call(CloneCommand.java:127)
  ... 4 more

我不明白问题是什么。我试图通过跳过第一个 if 子句来纠正它,只使用 mineDir.createNewFile() 等。代码在几天前工作得很好。有什么建议么?

4

1 回答 1

1

从堆栈跟踪中,错误发生在克隆存储库后的签出阶段。在此阶段,记录在 HEAD 提交中的文件和文件夹将在工作目录中创建。

那么,是否有一个提交引入了一个名称中包含特殊字符的文件?要找出答案,请查看克隆存储库的历史记录。

于 2013-05-21T15:53:40.720 回答