比较基线差异,包括文件内容
Comparing baseline differences including file contents
我知道我可以使用 diffbl 命令来比较两个基线。但是我怎样才能让命令打印出所有不同文件的差异?
这有可能吗,还是我需要写个脚本之类的?有什么指点吗?
单独使用 cleartool 可以获得的最接近值是 cleartool diffbl -ver
对于每个版本,您可以制作一个 cleartool diff -dif -pred <aversion>
in order to print the actual diff (using the -dif
format,其中报告了 UNIX 风格和 Linux diff
实用程序的差异)
如评论中所述,diff -pred
仅打印特定版本引入的差异。
所有这些差异的串联表示与旧基线相比新基线引入的所有修改。
换句话说,差异的串联表示 "print out the diffs of all the files that were different"。最初要求的是什么。
我知道我可以使用 diffbl 命令来比较两个基线。但是我怎样才能让命令打印出所有不同文件的差异?
这有可能吗,还是我需要写个脚本之类的?有什么指点吗?
单独使用 cleartool 可以获得的最接近值是 cleartool diffbl -ver
对于每个版本,您可以制作一个 cleartool diff -dif -pred <aversion>
in order to print the actual diff (using the -dif
format,其中报告了 UNIX 风格和 Linux diff
实用程序的差异)
如评论中所述,diff -pred
仅打印特定版本引入的差异。
所有这些差异的串联表示与旧基线相比新基线引入的所有修改。
换句话说,差异的串联表示 "print out the diffs of all the files that were different"。最初要求的是什么。