The title says it all...
Edit:
Well, maybe it doesn't say it all.
I need only the source tree and its history. I don't care for the requirements/issues stuff for now. I played a bit witth the command line to figure out if I could get a list of change packages for the trunk and some of the dev paths. I thought it should be possible to extract a diff for every change package and use that to replay all the changes since the first commit in git. Something like this:
- get fist commit and add it to git
 - get next CP
 - get diff for CP
 - apply diff to git working dir
 - add and commit changes to git
 - repeat with (2.) until last CP
 
You could also repleace change package with checkpoint (would be good enough for me).
A simpler way would be to just checkout a CP and add/commit to git. But then you would loose track of add, remove, move and rename operations.
Does anyone know how to get a unified diff from "si diff"? That would already help alot.
Any ideas?