Haiyuan Zhang
Haiyuan Zhang

Reputation: 42792

how can I list a certain user's activity in a branch

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.

Upvotes: 1

Views: 284

Answers (2)

VonC
VonC

Reputation: 1323753

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.

Upvotes: 1

Taylor Leese
Taylor Leese

Reputation: 52300

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

Upvotes: 0

Related Questions