Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Find all files that are not added to ClearCase

Tags:

clearcase

I have created some file, in different directories. I couldn't add them when I created, so I need to do it later.

Is there a way to get the list of all the files that are in ClearCase view, that are not actually under source control?

like image 823
Paolo Avatar asked Oct 12 '12 09:10

Paolo


1 Answers

Yes: you can list all your private files with ClearCase, with

  • cleartool lsprivate (only for dynamic views, not snapshot views)
  • cleartool ls -rec -view_only

You will need to grep the output for your specific file though.
See "Command to find all view private files in the current directory recursively" for more.

like image 78
VonC Avatar answered Sep 20 '22 20:09

VonC