When searching for a way to find all files in a clearcase repo that changed since date X i found two approaches
cleartool find . -type f -branch "brtype(abranch)" -element "{created_since(10-Jan)}" -print
as stated here
and
cleartool find . -type f -branch "brtype(abranch)" -version "created_since(10-Jan)" -print
as (though modified to resemble the same branch) found here
What is the difference between the created_since filter in -version and -element? The results do differ.
In "ClearTool: Finding changes from specific date", I had to use
-version
in order to check for updated directories and detect deleted files.But in "how to find files in a given branch", since the search is limited to files, I only had to check for files "created" (added to source control, hence the
-element
) since a certain date. I didn't have to check to modification in that question.The
cleartool find
allows to filter on:Note: I used the
find + -ele brtype
approach in "find files in clearcase" or "UCM-Clearcase - How to find new undelivered files for a given “stream”".