We use UCM for development. We create streams under streams, like this
Question is how to find new files in a given stream.
In the example "feat1
" would have new files relative to its parent lis1
(lis=local integration stream). The new files could be from "feat1
" or its child streams like "developer1
". How could I identify new files in lis1
?
One option is to create dynamic views on a stream (say feat1) and its parent stream(lis1) and take diff and figure out files new in the child stream.
Another option is to use cleartool deliver -preview
and get list of versions and then somehow (I do not know it yet) figure out the list of files.
The problem is the child stream is not necessarily rebased to its parent, and we enforce a "rebase to latest baseline before delivery" rule.
I hope there is a better and correct way :)