问题
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
回答1:
When it comes to cleartool find, the two sources of information and example I recommend are:
- SAMECS find command
- IBM find examples
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)
来源:https://stackoverflow.com/questions/1311623/find-files-in-clearcase