find files in clearcase

2019-01-12 12:09发布

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

标签: clearcase
1条回答
祖国的老花朵
2楼-- · 2019-01-12 12:29

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)

查看更多
登录 后发表回答