我一直在尝试使用此处找到的说明将我的化石存储库导出到 git 中。我在这里看到了这个问题,但它没有回答我的问题。
我遵循了https://www.fossil-scm.org/xfer/doc/tip/www/inout.wiki上的所有指示,但我似乎无法让它工作。
我做了以下事情:
git init new-repo
cd new-repo
fossil export --git ../repo.fossil | git fast-import
我得到统计数据:
git-fast-import statistics:
---------------------------------------------------------------------
Alloc'd objects: 10000
Total objects: 8831 ( 8 duplicates )
blobs : 5578 ( 0 duplicates 3374 deltas of 5224 attempts)
trees : 2509 ( 8 duplicates 1419 deltas of 2378 attempts)
commits: 744 ( 0 duplicates 0 deltas of 0 attempts)
tags : 0 ( 0 duplicates 0 deltas of 0 attempts)
Total branches: 1 ( 1 loads )
marks: 1048576 ( 6322 unique )
atoms: 4253
Memory total: 2704 KiB
pools: 2235 KiB
objects: 468 KiB
---------------------------------------------------------------------
pack_report: getpagesize() = 4096
pack_report: core.packedGitWindowSize = 1073741824
pack_report: core.packedGitLimit = 8589934592
pack_report: pack_used_ctr = 2936
pack_report: pack_mmap_calls = 744
pack_report: pack_open_windows = 1 / 1
pack_report: pack_mapped = 207355128 / 207355128
---------------------------------------------------------------------
我没有看到任何问题,但我没有工作回购。我错过了一步吗?我在化石文档中没有找到更多信息。提前致谢。
编辑:作为对以下问题的回答,我尝试使用 -R 和没有 -R 的导出命令。