I would like to get all the files checked-in a private branch and only the those files checked in.
What config spec would you recommend?
Let\'s say prv
the best way I found out to do this task was:
cleartool find . -version "brtype(BRANCH_NAME) && version(\main\VIEW_NAME\BRANCH_NAME\1)" -print
Yes, I know, \1 in the end will only return the first version, but that's ok, by doing this, you already know every single file you have checked-in, at least once.