1

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.

Haiyuan Zhang
  • 40,802
  • 41
  • 107
  • 134
  • 1
    If the cleartool command I mention in my answer does not give you the exact output you are looking for, leave a comment on my answer: I will update it. – VonC Sep 04 '09 at 04:01

2 Answers2

1

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
  • 1,262,500
  • 529
  • 4,410
  • 5,250
0

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

Taylor Leese
  • 51,004
  • 28
  • 112
  • 141