I work with ClearCase on Unix. I am working on a branch, and I need a team that will list all the files that I view in my branch that have updated their versions in the main branch. Is it possible?
You can use the findmerge command to list all items that have changed in another branch.
ct findm . -fver /Main -print
A more general command can be used to find all files that have a version on this branch :
cleartool find . -type f -branch "brtype(my_branch)" -print