Ever found yourself in a situation wherein you are working on a maintainance project and during the build phase PM comes and says "remember to maintain a list of files that you modify", I know this can be time consuming.
Here is a simple way to get your checked out files in a file if you are using clearcase
cd C:\sourcecodefolder
cleartool lsco -r -me -short>c:\checked_out_files_list.txt
find . -version "{created_since(2011-02-02)&& created_by(user1)}" -print
Here is a simple way to get your checked out files in a file if you are using clearcase
cd C:\sourcecodefolder
cleartool lsco -r -me -short>c:\checked_out_files_list.txt
find . -version "{created_since(2011-02-02)&& created_by(user1)}" -print
No comments:
Post a Comment