Does Source Depot have a command line similar to Perforce?
About a year ago, I moved my SCC home repository from Perforce to SVN in a few steps using a Python script. While I no longer have a script, it was pretty simple and was written one afternoon.
Basically, the script started from the very first list of changes and went through everything. It will synchronize with each change list and split the files into edit / add / branch lists. Then these files will be copied to the SVN path and updated / added / forked using the appropriate commands. They will then be used with a comment from the original change list.
This gave me a full SVN mirror of my Perforce warehouse with all the stories / comments and affiliate information. I had only one user (me!), But it would not be difficult to support multiple uses.
I even played around with the idea that the script would change the system clock so that the history dates were correct, but it was not worth it. For me, the most important thing was the history and information about the branch / tags.
source share