find files in clearcase

后端 未结 1 1292
误落风尘
误落风尘 2020-12-04 03:32

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 manage

相关标签:
1条回答
  • 2020-12-04 04:29

    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)

    0 讨论(0)
提交回复
热议问题