Whenever developer tries to debug the code they wanted to know list of files created and modified from particular day . I use

cleartool find command with created_since , but it finds only the files which are created not modified.

How to find both?

link|improve this question

80% accept rate
feedback

1 Answer

up vote 1 down vote accepted

The cleartool find command can give you what you want, provided you look for versions created since a date, not element (file or directory).

See "Additional examples of the cleartool find command":

cleartool find <vobtag> -version "{created_since(target-data-time)}" -print

Since you are in UCM, you can limit that search to a specific branch name (corresponding to a specific Stream)

cleartool find <vobtag> -version "{brtype(BRANCH) && created_since(target-data-time)}" -print

Add the user in this request:

cleartool find <vobtag> -version "{created_by(user2) && brtype(BRANCH) && created_since(target-data-time)}" -print

And you should get what you need for a developer for a given Stream and date.

link|improve this answer
Hi VonC, I was trying to execute the command. "cleartool find "M:\ViewName\VobName" -version "{brtype(\main\Integrationstream) && created_since(03-Jan:8:30)}" -print" but no results were shown . but i know that in Jan 3 we did modified many files. Am i missing any thing? – Samselvaprabu Jan 6 at 7:29
1  
@Samselvaprabu: try to debug by simplifying the request: brtype(Integrationstream) instead of /main/Integrationstream. Or use just the created_since (without the -branch), just to check if at least that works. – VonC Jan 6 at 7:36
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.