vote up 2 vote down star

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:

  1. get fist commit and add it to git
  2. get next CP
  3. get diff for CP
  4. apply diff to git working dir
  5. add and commit changes to git
  6. 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?

flag

I take it you are tired of having to see/understand things like "revision 1.1.1.1.1.1.2.1.1.1.2.1.1.1.1.3.1.1.1" every time somebody merges a change package? Best of luck on your escape from MKS. – Roboprog Aug 21 at 21:57
1  
It's more than just that. If anybody thinks their SCM is slow they haven't tried MKS. I do like the requirements/defect tracking integration, but the source stuff is as bad as it can get... – EricSchaefer Aug 22 at 8:45
Just completed my answer with a proposed import procedure, in response to your comment. – VonC Aug 22 at 9:48
Thank you for the feedback. May be other MKS users would benefit from your program (even a "quick and dirty" one)? You could add it as an answer to this thread. – VonC Aug 22 at 17:19
I will. I want to extend it a little, because I need it for some more complicated cases... – EricSchaefer Aug 24 at 8:11

1 Answer

vote up 1 vote down check

The problem with MKS Integrity is their unique repository in which everything resides:

  • requirements,
  • test plans,
  • test cases,
  • features,
  • developer tasks,
  • deployment requests

Since those data can evolve independently one from another, at their own pace, importing them all in one Git repository would be a bad idea: you can only clone all the content of a Git repo (even if you can limit the depth of that clone).
That means you will get all the documents, even though you are just interested in the code.
An MKS Integrity export would imply to define first many Git repositories to act as submodules.


I need only the source tree and its history.

As usual, I would recommend only importing:

  • the major labels (for anything older than a year, or whatever period you feel comfortable you won't need the examine in full because it is so old)
  • all the labels (major and minors) for the last years.

And I would not import all in one Git repository unless you are confident that all your sources represents one system developed as a all (and not several "modules" developed independently)

A simpler way would be to just checkout a CP and add/commit to git.

That would be the way to proceed.

But then you would loose track of add, remove, move and rename operations.

No! You would not! Git will infer those operations.
That is the advantage of being a file Content VCS.

link|flag
I would only need the source tree and its history. I don't care for the issues/items/workflow stuff. Maybe I sould extend the question... – EricSchaefer Aug 22 at 8:47
I keep forgetting that git will recognize renames etc. My mental model of this is still too much influenced by cvs, svn and mks. Thanks, I will try it right now. There are about 3 years of history and I think I will get all check points on the trunk (60 or 70) and only the latest of the branches as they are really short. Maybe I can even automate it a bit with the si command line tools. – EricSchaefer Aug 22 at 11:41
Just imported 62 checkpoints from mks into git with a small quick and dirty program. It was a bit tricky to extract the commit times, the checkpoint labels and the comments, but it was worth it. Tomorrow I will try another project with some larger branches. Thanks... – EricSchaefer Aug 22 at 16:42
Interesting question (and answer). The "rename inference" is a feature I had not heard of. Interesting. Perhaps it's time for me to move from svn to git (at home -- at work, it's MKS!). – Roboprog Aug 26 at 15:59

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.