Labels

  • Create a list of labels to be dumped as snapshots
  • Get snapshots (uses vss-get.sh from Tech.SourceSafeCommands) #!/bin/sh ROOT="/path/to/snapshots" # root of snapshot dir cat labels | while read LABEL do echo "$LABEL start" cd "$LABEL" && vss-get.sh "$VSS_PROJ" "$LABEL" > /dev/null cd "$ROOT" || break echo "$LABEL end" done

  • Create and checkout a Subversion working copy

  • Run Code.SvnImportSnapshots to import to SVN