tags:

views:

32

answers:

2

Hi Guys,

Given a branch name and a user id, I'd like to know what the guy have done to the files in the branch, how should I do ?

thanks.

A: 

Use a tool like Fisheye. It gives you all kinds of metrics on individual users.

Taylor Leese
+1  A: 

You can use a query with find:

cleartool find . -user aUsername -type f -branch "brtype(aBranchName)" -print

Note: Fisheye has:

  • only alpha support for ClearCase (since July 2009, see ticket 248)
  • had no support before that (see this thread)
  • requires large system resources which makes it impracticable for large Vobs.
VonC