Reputation: 43
Presently I follow this process:
However, the above approach takes very long time (as step 1 itself takes 10 minutes). If I already know the hijacked file path, then is there a faster way to do the same?
Upvotes: 3
Views: 1105
Reputation: 1324537
This 2007 thread summarizes the options you have; the command line with cleartool 9.0.1.3 also offers a diff, even though the thread claims that it doesn't. See bottom of the post.
OR
filename.hijacked
), reload filename (cleartool update filname
) update the file, then run cleartool diff filename filename.hijacked
.OR
cleartool diff filename M:\view\VOB\path\to\file
)I used to do the third option, as it does not require to touch the hijacked file.
With cleartool, compare an extended path name specifying a version, e.g. /main/LATEST, to an simple path. (A command line can be opened conveniently from the context menu of a folder in ClearCase Explorer.)
cleartool diff file.c@@/main/LATEST file.c
Upvotes: 1