有一个名为Polarion SVN Importer的Apache 2许可工具。有没有人知道这个来源并将它们放在Github上?我想Apache License有权这样做。
该工具可以在polarion.plm.automation.siemens.com下载,但没有可用的来源。
即使软件是开源软件,它的来源也会丢失。
请参阅Recommendation on Tools to migrate from Clearcase to SVN?
答案 0 :(得分:1)
当OP weberjn添加in the comments时,有两个用于将ClearCase导出到VCS的脚本,但通常是针对DVCS Git,它通过提交工作,而不是像文件版本那样ClearCase的。
(参见“What are the basic ClearCase concepts every developer should know?”)
但是这个想法仍然是one I described before:对于每个ClearCase标签或UCM基线,你要检查它们并导入你的Git工作树。
一种简单的方法是:
cleartool setcs
(带有标签的配置规范)或cleartool rebase <yourBaseline>
,cd /path/to/my/git/repo
git --work-tree=/path/to/clearcase/view add .
与上一次导入相比,最后一个命令会自动检测Git仓库中添加/修改或删除的文件。