"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
。
这是我执行的步骤:
- git 初始化新仓库
- cd new-repo
- fossil.exe 导出 --git "fossil_repo_path" | git 快速导入
我没有弄清楚是什么导致了这个问题,但我找到了一个解决方法:
git init git-repo
cd fossil-repo
fossil export --git > git.txt
- 将
git.txt
移动到 git-repo
type/cat git.txt | git fast-import
git checkout trunk
- 瞧瞧
当我在 Windows 上尝试将 fossil
存储库导出到 git 时,我收到 fossil.exe: [<repo path>]: unable to open database file
。
这是我执行的步骤:
- git 初始化新仓库
- cd new-repo
- fossil.exe 导出 --git "fossil_repo_path" | git 快速导入
我没有弄清楚是什么导致了这个问题,但我找到了一个解决方法:
git init git-repo
cd fossil-repo
fossil export --git > git.txt
- 将
git.txt
移动到git-repo
type/cat git.txt | git fast-import
git checkout trunk
- 瞧瞧