Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Converting a CM Synergy archive to free source control

Because of downsizing and cost-saving our organisation is moving from CM/Telogic/Rational Synergy to free tools (most probably SVN). Is there anyway to transfer history and branch information from Synergy to a free tool?

like image 302
Matthijs P Avatar asked Jan 18 '11 13:01

Matthijs P


1 Answers

I don't know of a native way to dump/import a CM Synergy source base into another SCM, which means the usual "generic import" tactic applies:

  • select some important baselines/labels/branches and load them one by one on the hard drive.
  • for each baseline, use that image as source to copy the files over the working directory of the target SCM (SVN or Git, Git can handle that kind of scenario very easily).
  • commit, then repeat for the next baseline/label/branch

But that means you loose some history and some metadata along the way.

like image 164
VonC Avatar answered Sep 21 '22 15:09

VonC