Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
menu search
person
Welcome To Ask or Share your Answers For Others

Categories

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

See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
775 views
Welcome To Ask or Share your Answers For Others

1 Answer

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)


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
...