"Unable to open database file" 尝试将化石库导出到 git 时

"Unable to open database file" when trying to export a fossil repo to git

当我在 Windows 上尝试将 fossil 存储库导出到 git 时,我收到 fossil.exe: [<repo path>]: unable to open database file

这是我执行的步骤:

  1. git 初始化新仓库
  2. cd new-repo
  3. fossil.exe 导出 --git "fossil_repo_path" | git 快速导入

我没有弄清楚是什么导致了这个问题,但我找到了一个解决方法:

  1. git init git-repo
  2. cd fossil-repo
  3. fossil export --git > git.txt
  4. git.txt 移动到 git-repo
  5. type/cat git.txt | git fast-import
  6. git checkout trunk
  7. 瞧瞧