tags:

views:

466

answers:

1

hello

situation: one vob, 2 views (main dev and branch view).

i need to find all files that where created in the branch view and therefore can't be found via merge manager.

anyone able to help?

thanks

+3  A: 

When it comes to cleartool find, the two sources of information and example I recommend are:

In your case:

cleartool find -all -ele "brtype(mybranch) && !brtype(main)" -print

(supposing "main dev" means "branch 'main'")

cleartool find -all -type f -ele "brtype(mybranch) && !brtype(main)" -print

would limit that to files only (not directories)

VonC
To be executed anywhere within your (snapshot or dynamic) view
VonC
many thanks for your realy quick answer. i'll take a close look at the links you wrote.To my problem: i think its not the solution, because i do need all files in the branch view that are not existent in the main view. Also brtype_sub is not a recognized operator (error). We are using CC 7.0.0 ...The files i like to get are the once created in the branch view, not in the main view, and then brached to the brach view.