When converting a repository using reposurgeon and I write a state into the git-fast-export by doing:
prefer git
write --fossilize >nameofdump.fi
will a subsequent:
read <nameofdump.fi
restore the additional markers that get dumped using the --fossilize option, or do I have to use a separate "fossils file" via:
fossils write >nameofdump.fo
and:
fossils read <nameofdump.fo
respectively?
The point is that since I am converting from SVN I need to make use of the fossil IDs as the documentation calls them, which correspond to the respective global revision ID in SVN.
After getting more acquainted to the code (of
reposurgeon3.10) I can conclude that nowrite --fossilizedoes not have a correspondingreadoperation and a vanillareaddoes not care about the# Fossil-ID: ...comments in thegit-fast-importstream produced bywrite --fossilize.