I had some files in my view few days back and I need to recreate those files. Now I want to see which file changed from that period of time. Is it possible in clearcase to see the history of the view and to check what are the files that were changed from that period of time?
Asked
Active
Viewed 311 times
1 Answers
0
One solution is to make a snapshot view with time-based selection rules, with a config spec similar to:
element /myPath/... .../StreamName/{!created_since(16-Sep-2009)}
element /myPath/... /main/{!created_since(16-Sep-2009)}
element /myPath/... /main/LATEST
To quickly list all modified files since a certain daye, use a cleartool find
command:
cleartool find <vobtag> -element "{created_since(target-data-time)}" -print
Not only can you compare it with your current view, and find what has changed, but you also can copy over the older files in your current view.
See also: