How to find element(s) which are not present in the clearcase recursively , let us say from project root folder i want to know the list of files which are not part of clearcase. Can some one help me on this?
views:
138answers:
3
+1
A:
Usually Clearcase plugin (with RSA I am sure it does) gives an option "Find Resources to add to source control".. This will list all files which are not in ClearCase repository.. Hope this helped.. :-)
Richie
2010-01-20 04:39:47
Is this the plugin for eclipse? If so, what i'm looking for is to add it to context menu(window exlplorer --> right click) like as you said "Find Resources to add to source control".
srinannapa
2010-01-20 04:45:04
its a plugin for eclipse. this gives you a new tab for clearcase.in that tab there is "Find Resources to add to source control" option..
Richie
2010-01-20 06:27:06
+2
A:
First you need to find them through the command line interface, in a DOS session for instance:
for /F "usebackq delims=" %i in (`cleartool ls -r -nxn ^| find /V "Rule:" ^| find /V "hijacked" ^| find /V "eclipsed"`) do @echo "%i"
(See the discussion on how to find private files in this SO answer)
Then, you can add this command to the ClearCase menu entries from the Windows explorer, follwing the process described in the ten ben scripts article.
See also this SO question and that one for example of menu entries commands (not related to your question, but mentioning a few tip about the commands)
VonC
2010-01-20 05:14:09