Reputation: 39373
I believe this is a simple question: I want to find which files were modified when I fixed a bug. I know some words in the commit messages. In other version control I'd list all the commit messages and grep for my correction. Something like:
svn log|grep -C 10 'Access Violation'
I can't find in ClearCase how to do the simple task of listing all the commit messages of a stream. I want to see also the commit messages of the child streams. Can someone help me?
Upvotes: 2
Views: 386
Reputation: 1327324
That would be because there is no "commit message" per se in ClearCase.
So, for instance you can list activities (as I illustrate in "how to find the list activities delivered to integration stream on a particular day?"):
cleartool lsact -r -in stream:aStream@\aPVob -fmt "%n %c"|grep "Access Violation"
and grep on their comment message, using the fmt_ccase
format to display the associated comment (with %c
).
Note the -r
(recursive) option, which will include activities from the child streams.
Upvotes: 0