How to use ClearCase annotation subcommand?

I am trying to figure out how to get a code history report in which I get a file version for each line of code. I do not need to get multiple lines for each line of code. only. The annotate subcommand has many arguments, and I cannot find it for this purpose. Do you know how to get this?

Thank you very much

+4
source share
1 answer

file version for each line of code

This is almost like the last example of the cleartool annotate command:

cleartool annotate -out - -fmt "%Vn |" -rm -nheader util.c 

Value: no title, only text annotations of strings, including deleted ones.

+5
source

All Articles