In a stream comparison, how can I list the actual physical changes to members that are different between the streams?
One answer
Using the scm command line tool you can run 'scm diff stream <development stream> stream <production stream>' which will list all the file changes between the development stream and the production stream.
If you just want to know which files have changed you could run 'scm compare stream <development stream> stream <production stream>'. This will list the incoming/outgoing change sets between the two streams. There is an option to list only the file paths.
This operation can also be performed in the RTC Eclipse or RTC Visual Studio clients.