ClearCase - find all files that are not updated

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?

+4
source share
2 answers

You can use the findmerge command to list all items that have changed in another branch.

ct findm . -fver /Main -print 
+2
source

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 
+1
source

All Articles