使用IBM Rational ClearCase: - 我只能访问快照视图,因此没有动态视图
我想将特定变更集中的所有版本复制到c:\ temp。我已经在一个文件中列出了变更集版本(几百个版本,我只需要最新版本),我没有这个旧版本的基线。
我现在拥有和不起作用:
#!/usr/bin/perl -w
#
# PROGRAM: copytest.pl
$filename = "Design test123.doc";
$view = "D:\\AdminViews\\ABC_R1_READ_2\\ABCD002\\ABC_DESIGN\\BLA Framework\\P0\\";
$version = "\\main\\ABC_R1_READ\\1";
$printhet = 'cleartool find . -name "' . $filename . '" -version version(' . $version. ') -exec "cmd /c copy %CLEARCASE_XPN% D:\temp\%CLEARCASE_PN%"';
system($printhet);
基本上是因为:http://www-01.ibm.com/support/docview.wss?uid=swg21150317(XPN)
更新:我再次阅读In ClearCase, how can I view old version of a file in a static view, from the command line?并且我看到带有空文件的差异是没有XPN的/ hack。好的...但是上面有空的差异和上面的文档给了我“0”
答案 0 :(得分:1)