Checking user history in a clear cell

Is there any way to find out the history of user registration in the stream?

I know that I can get the story by looking at all the actions in the stream. But the change specified in the action does not show the date the file was installed in.

Thanks for the help!

+3
source share
1 answer

In the activity change set, the date of the files may be displayed. You just need to combine the team with . describe fmt_ccase

cleartool describe -fmt "%[versions]CQp\n" activity:myActivity@/pvobName

For each output:

cleartool describe -fmt "%u %n %d" aFile@@/main/branches/x

Note. On Windows, you can list all the actions for a given user.
First go to the UCM view associated with the corresponding thread. Then:

for /f  %x in ('cleartool lsact -cview -fmt "%Xn %u\n" ^| findstr "username"') 
  do cleartool desc -fmt "%[versions]CQp\n" %x 

script Perl ( , Windows, Unix).
. SO ClearCase Perl?"

+3

Source: https://habr.com/ru/post/1735307/


All Articles