How to use ClearCase Annotate

后端 未结 2 2004
别跟我提以往
别跟我提以往 2020-12-18 11:51

I\'m trying to use annotate but have a problem: The output ignores some information (date and username) if it was displayed for the same version before. I\'d like to display

相关标签:
2条回答
  • 2020-12-18 12:00

    You could use -force to get rid of that (.) character. This is what I am using for my script - cleartool annotate -all -fmt "%Ad %-8.8u %-100.150Vn | " -nheader -force <filename>

    0 讨论(0)
  • 2020-12-18 12:08

    According to the cleartool annotate man page, that command always uses an "elide-format", precisely to avoid duplicating informations on lines modified by the same author.

    So the only solution would be to parse the result of that command in order to insert the relevant information.

    0 讨论(0)
提交回复
热议问题