I'm getting a fossil.exe: [<repo path>]: unable to open database file when I'm trying to export a fossil repo to git on Windows.
Here's the steps I made:
- git init new-repo
- cd new-repo
- fossil.exe export --git "fossil_repo_path" | git fast-import
I'm getting a fossil.exe: [<repo path>]: unable to open database file when I'm trying to export a fossil repo to git on Windows.
Here's the steps I made:
I didn't figure out what was causing the problem, but I found a workaround:
git init git-repocd fossil-repofossil export --git > git.txtgit.txt to git-repotype/cat git.txt | git fast-importgit checkout trunk